allCandidates property

  1. @override
Iterable<SemanticsNode> allCandidates
override

Returns all of the items that will be considered by this finder.

Implementation

@override
Iterable<SemanticsNode> get allCandidates {
  return roots.expand((SemanticsNode root) => collectAllSemanticsNodesFrom(root));
}