forEach method

void forEach(
  1. void action(
    1. K key,
    2. V value
    )
)

Implementation

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