entries property
The map entries of this Map.
Implementation
@override
Iterable<MapEntry<K, V>> get entries {
// TODO(cbracken): Dart 2.0 requires this method to be implemented.
// Change Iterable<Null> to Iterable<MapEntry<K, V>> when
// the MapEntry class has been added.
throw UnimplementedError('entries');
}