hide method

void hide()

Hides the custom popup

Implementation

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