forEach abstract method

Future<void> forEach(
  1. void action(
    1. String key,
    2. V value
    )
)

Apply action to execute every entries.

Implementation

Future<void> forEach(void Function(String key, V value) action);