each method

Future<Iterable<E>> each(
  1. void f(
    1. E e
    )
)

Refer to Iterable.forEach;

Additionally returns the iterable.

Implementation

Future<Iterable<E>> each(void f(E e)) async => (await this)..forEach(f);