forEach method

dynamic forEach(
  1. ForEach f
)

Implementation

forEach(ForEach f) {
  for (var child in root._children) {
    child._forEach(f);
  }
}