forEach method
- void f(
- E element
override
Applies the function f
to each element of this list in iteration order.
Implementation
@override
void forEach(void Function(E element) f) {
_wrappedList.forEach(f);
}
Applies the function f
to each element of this list in iteration order.
@override
void forEach(void Function(E element) f) {
_wrappedList.forEach(f);
}