hide method

void hide()

Implementation

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