forEach method

  1. @override
void forEach(
  1. void action(
    1. K key,
    2. V value
    )
)
override

Applies the given function to each key-value pair in the map.

This is a non-mutating iteration operation.

Implementation

@override
void forEach(void Function(K key, V value) action) {
  value.forEach(action);
}