children property

Iterable<Element> children
@protected

The current list of children of this element.

This list is filtered to hide elements that have been forgotten (using forgetChild).

Implementation

@protected
Iterable<Element> get children => _children.where((Element child) => !_forgottenChildren.contains(child));