updateAll method
- @override
override
Updates all values.
Iterates over all entries in the map and updates them with the result
of invoking update
.
Implementation
@override
// TODO: Dart 2.0 requires this method to be implemented.
// ignore: override_on_non_overriding_method
void updateAll(V update(K key, V value)) {
throw new UnimplementedError("updateAll");
}