RemoveNotificationGroup constructor

const RemoveNotificationGroup({
  1. required int notificationGroupId,
  2. required int maxNotificationId,
})

Removes a group of active notifications. Needs to be called only if the notification group is removed by the current user

Implementation

const RemoveNotificationGroup({
  required this.notificationGroupId,
  required this.maxNotificationId,
});