forEach method

void forEach(
  1. void f(
    1. T item
    )
)

Implementation

void forEach(void f(T item)) => _list.forEach(f);