subUIComponentsDeeply property

Iterable<UIComponent> get subUIComponentsDeeply

Returns a List of sub UIComponent deeply in the tree.

Implementation

Iterable<UIComponent> get subUIComponentsDeeply sync* {
  var subUIComponents = this.subUIComponents;
  if (subUIComponents.isEmpty) {
    return;
  }

  yield* subUIComponents;

  for (var e in subUIComponents) {
    yield* e.subUIComponentsDeeply;
  }
}