enterText method
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,
);
}