toIterable method

Iterable<MapEntry<K, V>> toIterable(
  1. Order<K> order
)

Get a sorted Iterable of the key/value pairs contained in this Map.

Implementation

Iterable<MapEntry<K, V>> toIterable(Order<K> order) =>
    entries.sortWith((map) => map.key, order);