comparableEntries property
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);