Matcher findsNWidgets(int n)

Asserts that the Finder locates the specified number of widgets in the widget tree.

Example:

expect(find.text('Save'), findsNWidgets(2));

Source

Matcher findsNWidgets(int n) => new _FindsWidgetMatcher(n, n);