updateNotificationList method

void updateNotificationList()

Implementation

void updateNotificationList() {
  filteredNotificationsList.value = notificationsList.value;
  notificationsList.refresh();
  filteredNotificationsList.refresh();
  onNotificationsUpdated?.call(notificationsList.value!);
}