showInputMethod method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'InputMethodManager.showSoftInput', apiUrl: 'https://developer.android.com/reference/android/view/inputmethod/InputMethodManager#showSoftInput(android.view.View,%20int)')])
Future<void> showInputMethod()
inherited

Explicitly request that the current input method's soft input area be shown to the user, if needed.

Implementation

@SupportedPlatforms(
  platforms: [
    AndroidPlatform(
      apiName: 'InputMethodManager.showSoftInput',
      apiUrl:
          'https://developer.android.com/reference/android/view/inputmethod/InputMethodManager#showSoftInput(android.view.View,%20int)',
    ),
  ],
)
Future<void> showInputMethod() {
  throw UnimplementedError(
    '${PlatformInAppWebViewControllerMethod.showInputMethod.name} is not implemented on the current platform',
  );
}