forEach method
- void f(
- T
override
Applies the function f
to each element of this collection.
Implementation
@override
void forEach(void Function(T) f) => _items.forEach(f);
Applies the function f
to each element of this collection.
@override
void forEach(void Function(T) f) => _items.forEach(f);