iDontSeeWidget function

Future<void> iDontSeeWidget(
  1. WidgetTester tester,
  2. Type type
)

Example: Then I don't see {SomeWidget} widget

Implementation

Future<void> iDontSeeWidget(
  WidgetTester tester,
  Type type,
) async {
  expect(find.byType(type), findsNothing);
}