waitForTappable method Null safety
- SerializableFinder finder,
- {Duration? timeout}
Waits until finder
is tappable.
Implementation
Future<void> waitForTappable(SerializableFinder finder, { Duration? timeout }) async {
await sendCommand(WaitForTappable(finder, timeout: timeout));
}