UpdateNotificationGroup constructor

const UpdateNotificationGroup({
  1. required int notificationGroupId,
  2. required NotificationGroupType type,
  3. required int chatId,
  4. required int notificationSettingsChatId,
  5. required int notificationSoundId,
  6. required int totalCount,
  7. required List<Notification> addedNotifications,
  8. required List<int> removedNotificationIds,
  9. dynamic extra,
  10. int? clientId,
})

A list of active notifications in a notification group has changed

Implementation

const UpdateNotificationGroup({
  required this.notificationGroupId,
  required this.type,
  required this.chatId,
  required this.notificationSettingsChatId,
  required this.notificationSoundId,
  required this.totalCount,
  required this.addedNotifications,
  required this.removedNotificationIds,
  this.extra,
  this.clientId,
});