enterText method

  1. @override
Future<void> enterText(
  1. Finder finder,
  2. String text, {
  3. Duration? timeout = const Duration(seconds: 30),
})
override

Implementation

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