findsNothing top-level constant

Matcher const findsNothing

Asserts that the Finder matches no components in the component tree.

Sample code

expect(find.text('Save'), findsNothing);

See also:

Implementation

const Matcher findsNothing = _FindsComponentMatcher(null, 0);