depthFirst property
Iterable<ArgosWidgetNode>
get
depthFirst
Depth-first iteration over this node and all captured descendants.
Implementation
Iterable<ArgosWidgetNode> get depthFirst sync* {
yield this;
for (final child in children) {
yield* child.depthFirst;
}
}