UpdateNotificationGroup constructor

UpdateNotificationGroup({
  1. required int notificationGroupId,
  2. 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,
})

Implementation

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