Asserts that the Finder locates the specified number of widgets in the widget tree.
Example:
expect(find.text('Save'), findsNWidgets(2));
Matcher findsNWidgets(int n) => new _FindsWidgetMatcher(n, n);