subUIComponentsDeeply property

List<UIComponent> subUIComponentsDeeply
inherited

Returns a List of sub UIComponent deeply in the tree.

Implementation

List<UIComponent> get subUIComponentsDeeply =>
    subUIComponents.expand((e) => [e, ...e.subUIComponents]).toList();