iDontSeeWidget function
Example: Then I don't see {SomeWidget} widget
Implementation
Future<void> iDontSeeWidget(
WidgetTester tester,
Type type,
) async {
expect(find.byType(type), findsNothing);
}
Example: Then I don't see {SomeWidget} widget
Future<void> iDontSeeWidget(
WidgetTester tester,
Type type,
) async {
expect(find.byType(type), findsNothing);
}