maps
var gifts = {
// Key: Value
'first': 'partridge',
'second': 'turtledoves',
'fifth': 'golden rings'
};
var nobleGases = {
2: 'helium',
10: 'neon',
18: 'argon',
};
In general, a map is an object that associates keys and values. Both keys and
values can be any type of object. Each key occurs only once, but you can use the
same value multiple times. Dart support for maps is provided by map literals and
the Map type.