UpdateNotification constructor

const UpdateNotification({
  1. required int notificationGroupId,
  2. required Notification notification,
  3. dynamic extra,
  4. int? clientId,
})

A notification was changed

Implementation

const UpdateNotification({
  required this.notificationGroupId,
  required this.notification,
  this.extra,
  this.clientId,
});