forEach method
Apply action
to execute every entries.
Implementation
@override
Future<void> forEach(void Function(String key, V value) action) async {
await for (var DictionaryEntry(key: k, value: v) in entries) {
action(k, v);
}
}
Apply action
to execute every entries.
@override
Future<void> forEach(void Function(String key, V value) action) async {
await for (var DictionaryEntry(key: k, value: v) in entries) {
action(k, v);
}
}