resize method

void resize()

Implementation

void resize() {
  // check to see if widget is still mounted
  // user may have closed the widget with the keyboard still open
  if (widgetMounted) {
    _adjustMaxHeightAndOrientation();
    overlayEntry!.markNeedsBuild();
  }
}