forEach method
void
forEach(
- void action(
- K key,
- V value
Implementation
void forEach(void Function(K key, V value) action) {
_map.forEach(action);
}
void forEach(void Function(K key, V value) action) {
_map.forEach(action);
}