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