forEach method

void forEach(
  1. void f(
    1. K,
    2. V
    )
)

Implementation

void forEach(void Function(K, V) f) {
  _map.forEach(f);
}