Dart - How to sort Map's keys

前端 未结 3 1797
天命终不由人
天命终不由人 2020-12-11 14:47

I have question in sorting Map\'s key in Dart.

Map map = new Map();

How can

3条回答
  •  没有蜡笔的小新
    2020-12-11 15:04

    If you want a sorted List of the map's keys:

    var sortedKeys = map.keys.toList()..sort();
    

    You can optionally pass a custom sort function to the List.sort method.

    Finally, might I suggest using Map rather than Map?

提交回复
热议问题