forEach method
Applies the given function to each key-value pair in the map.
This is a non-mutating iteration operation.
Implementation
@override
void forEach(void Function(K key, V value) action) {
value.forEach(action);
}
Applies the given function to each key-value pair in the map.
This is a non-mutating iteration operation.
@override
void forEach(void Function(K key, V value) action) {
value.forEach(action);
}