RemoveNotification constructor

const RemoveNotification(
  1. {required int notificationGroupId,
  2. required int notificationId}
)

Removes an active notification from notification list. Needs to be called only if the notification is removed by the current user

Implementation

const RemoveNotification({
  required this.notificationGroupId,
  required this.notificationId,
});