inputMethod method

Future<bool> inputMethod()

Open Android settings in Input Method section. returns operation successful or failure.

Implementation

Future<bool> inputMethod() {
  return sendCustomMessage(
    'android.settings.INPUT_METHOD_SETTINGS',
  );
}