tap method
Implementation
@override
Future<void> tap(
Finder finder, {
Duration? timeout = const Duration(seconds: 30),
}) async {
await nativeDriver.tap(finder);
await waitForAppToSettle(
timeout: timeout,
);
}
@override
Future<void> tap(
Finder finder, {
Duration? timeout = const Duration(seconds: 30),
}) async {
await nativeDriver.tap(finder);
await waitForAppToSettle(
timeout: timeout,
);
}