hideKeyboard method

dynamic hideKeyboard(
  1. bool animate
)

Implementation

hideKeyboard(bool animate) {
  if (!animate && Platform.isIOS) {
    ChannelManager.showKeyboard(false);
  } else {
    _hideKeyboard();
  }
}