found property

FinderResult<CandidateType> found

The results of the latest evaluate or tryEvaluate call.

Unlike evaluate and tryEvaluate, found will not re-execute the search for this finder. Either evaluate or tryEvaluate must be called before accessing found.

Implementation

FinderResult<CandidateType> get found {
  assert(
    _found != null,
    'No results have been found yet. '
    'Either `evaluate` or `tryEvaluate` must be called before accessing `found`',
  );
  return _found!;
}