sendKeyboardEnter method
Sends the keyboard Enter/Return action to the currently focused input.
Implementation
Future<void> sendKeyboardEnter() {
return platform.action.mobile(
android: platform.android.sendKeyboardEnter,
ios: platform.ios.sendKeyboardEnter,
);
}