forEach method
void
forEach(
- void action(
- K k,
- V v
Execute the given action for each key value pair
Implementation
void forEach(void Function(K k, V v) action) {
data.forEach((key, value) {
for (var subelement in value) {
action(key, subelement);
}
});
}