hideCurrentNotification static method

void hideCurrentNotification()

Method to hide the current notification.

Implementation

static void hideCurrentNotification() {
  _currentOverlay?.remove();
  _currentOverlay = null;
}