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