forEach method
void
forEach(
- void action(
- K k,
- V v
Applies action to each key-value pair in the map.
Implementation
void forEach(void Function(K k, V v) action) {
value.forEach(action);
}