allCandidates property

  1. @override
Iterable<Element> allCandidates
override

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

Implementation

@override
Iterable<Element> get allCandidates {
  return collectAllElementsFrom(
    WidgetsBinding.instance.rootElement!,
    skipOffstage: skipOffstage,
  );
}