forEach method

void forEach(void action(E element))

Applies the function f to each element of this collection in iteration order.

Source

void forEach(void action(E element)) {
  int length = this.length;
  for (int i = 0; i < length; i++) {
    action(this[i]);
    if (length != this.length) {
      throw new ConcurrentModificationError(this);
    }
  }
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-collection/ListMixin/forEach.html