forEach method

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

Implementation

void forEach(void Function(K key, V value) f) =>
    entries.forEach((entry) => f(entry.key, entry.value));