updateKeyboardHeight static method

dynamic updateKeyboardHeight()

Implementation

static updateKeyboardHeight() {
  if (_pageKey != null &&
      _pageKey!.currentState != null &&
      clearTask == null) {
    _pageKey!.currentState!.updateHeight(_keyboardHeightNotifier.value);
  }
}