forEach method

  1. @override
void forEach(
  1. void f(
    1. 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);
}