forEach method

void forEach(
  1. void f(
    1. K key,
    2. ISet<V> set
    )
)

Applies the function f to each element.

Implementation

void forEach(void Function(K key, ISet<V> set) f) => _mapOfSets.forEach(f);