I have question in sorting Map\'s key in Dart.
Map map = new Map();
How can
If you want a sorted List of the map's keys:
List
var sortedKeys = map.keys.toList()..sort();
You can optionally pass a custom sort function to the List.sort method.
List.sort
Finally, might I suggest using Map rather than Map?
Map