hide method

void hide()

Implementation

void hide() {
  if (_state == null) {
    BadFl.log(
      module: 'widget/BadPopup',
      message:
          'PopupController.hide is called without any attached popup (maybe automatically disposed at this point)',
    );
    return;
  }

  _state!.hide();
}