forEach abstract method

void forEach(
  1. void f(
    1. String key,
    2. V value
    )
)

Applies f to each key/value pair of the TTMultiMap

Calling f must not add or remove keys from the TTMultiMap.

Implementation

void forEach(void Function(String key, V value) f);