showKeyboard method

Future showKeyboard()

Implementation

Future showKeyboard() async {
  _setHandler();
  return await _channel.invokeMethod(showKeyboardTag, {
    'userID': userId,
    'languageCode': languageCode,
    'countryCode': countryCode
  }).then((value) => {
    print("HERE(showKeyboard)")
  });
}