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

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

Source

@override
void forEach(void f(T element)) {
  _children.forEach(f);
}