iSeeExactlyWidgets function
Example: Then I see exactly {4} {SomeWidget} widgets
Implementation
Future<void> iSeeExactlyWidgets(
WidgetTester tester,
int count,
Type type,
) async {
expect(find.byType(type, skipOffstage: false), findsNWidgets(count));
}