forEach method

  1. @override
void forEach(
  1. void f(
    1. T
    )
)
override

Applies the function f to each element of this collection.

Implementation

@override
void forEach(void Function(T) f) => _items.forEach(f);