each method
Refer to Iterable.forEach;
Additionally returns the iterable.
Implementation
Future<Iterable<E>> each(void f(E e)) async => (await this)..forEach(f);
Refer to Iterable.forEach;
Additionally returns the iterable.
Future<Iterable<E>> each(void f(E e)) async => (await this)..forEach(f);