hide method

void hide()

hide the currently displayed popup

Implementation

void hide() {
  if (_showing) {
    AtEventNotificationListener().navKey!.currentState!.pop();
    _showing = false;
  }
}