children property

Iterable<ChildType> children

Returns all children using firstChild and childAfter.

Implementation

Iterable<ChildType> get children sync* {
  var child = firstChild;
  while (child != null) {
    yield child;
    child = childAfter(child);
  }
}