entries property

Iterable<MapEntry<K, V>> entries
override

The map entries of this.

Implementation

Iterable<MapEntry<K, V>> get entries =>
    _base.entries.map((e) => new MapEntry(e.value.first, e.value.last));