comparableEntries property

Iterable<Entry<K, V>> comparableEntries

Returns an Iterable of the map entries of type Entry. Contrary to MapEntry, Entry is comparable and implements equals (==) and hashcode by using its key and value.

Implementation

Iterable<Entry<K, V>> get comparableEntries => _m.entries.map((e) => e.asComparableEntry);