forEach method

  1. @override
Future<void> forEach(
  1. void action(
    1. String key,
    2. Object value
    )
)
override

Apply action for each pairs.

Implementation

@override
Future<void> forEach(void Function(String key, Object value) action) {
  return entries.forEach((element) => action(element.key, element.value));
}