// Dart语言映射属性值
void main() { 
   var details = {'Usrname':'tom','Password':'pass@123'}; 
   print(details.values); 
}