Dart Programming - Map Property Values



Returns an iterable object representing values in the Map.

Syntax

Map.values 

Example

void main() { 
   var details = {'Usrname':'tom','Password':'pass@123'}; 
   print(details.values); 
}

It will produce the following output

(tom, pass@123)
dart_programming_map.htm
Advertisements