forTopChecked method

void forTopChecked(
  1. ForEach f
)

Implementation

void forTopChecked(ForEach f) {
  for (var child in root._children) {
    child._forTopChecked(f);
  }
}