hide method

void hide()

Implementation

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