enterText method

  1. @override
Future<void> enterText(
  1. SerializableFinder finder,
  2. String text, {
  3. 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,
  );
}