sendAlertNotificationRequest method

void sendAlertNotificationRequest(
  1. String description,
  2. IconData icon
)

Sends an alert notification request

Implementation

void sendAlertNotificationRequest(String description, IconData icon) {
  _currentObserver != null
      ? _currentObserver!.showDropdownNotification(description, icon)
      : throwUnregisteredObserverError();
}