forEach method

FutureOr<void> forEach(
  1. Callback<void, T> test
)

Implementation

FutureOr<void> forEach(Callback<void, T> test) {
  return _innerThen((list) => list.forEach(test));
}