forEach method
void
forEach(
- void f(
- T
Iterates over all items in the collection.
Implementation
void forEach(void Function(T) f) => all().forEach(f);
Iterates over all items in the collection.
void forEach(void Function(T) f) => all().forEach(f);