forEach method

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

Implementation

void forEach(void Function(T element) f) => iter.forEach(f);