traversalChildren property
inherited
An iterator over the children that are allowed to be traversed by the
FocusTraversalPolicy
.
Implementation
Iterable<FocusNode> get traversalChildren {
return children.where(
(FocusNode node) => !node.skipTraversal && node.canRequestFocus,
);
}