forEach method

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

As ListMultimap.forEach.

Implementation

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