descendants property

Iterable<FocusNode> descendants
inherited

An Iterable over the hierarchy of children below this one, in depth-first order.

Implementation

Iterable<FocusNode> get descendants sync* {
  for (FocusNode child in _children) {
    yield* child.descendants;
    yield child;
  }
}