forEach method
Applies f
to each {key, value} pair of the multimap.
It is an error to add or remove keys from the map during iteration.
Implementation
@override
void forEach(void Function(K key, V value) f) {
_map.forEach((K key, Iterable<V> values) {
for (final V value in values) {
f(key, value);
}
});
}