addNotification method

void addNotification(
  1. AppNotification notification
)

Implementation

void addNotification(AppNotification notification) {
  _notifications.insert(0, notification);
  notifyListeners();
}