children property
QueryableOrderedSet<Component>
get
children
inherited
The children components of this component.
This getter will automatically create the OrderedSet
container within
the current object if it didn't exist before. Check the hasChildren
property in order to avoid instantiating the children container.
Implementation
QueryableOrderedSet<Component> get children =>
_children ??= createComponentSet();