setSorted property

Map<X, Y> setSorted

Implementation

Map<X, Y> get setSorted {
  var l = set.entries.cast<MapEntry<Comparable, dynamic>>().toList();
  _sorteEntriesByKey(l);
  return Map.fromEntries(l).cast();
}