forEach method
void
forEach(
- void action(
- K key,
- V value
Implementation
void forEach(void Function(K key, V value) action) => value.forEach(action);
void forEach(void Function(K key, V value) action) => value.forEach(action);