NotificationGroup constructor

NotificationGroup({
  1. required int id,
  2. NotificationGroupType? type,
  3. required int chatId,
  4. required int totalCount,
  5. required List<Notification> notifications,
})

Implementation

NotificationGroup({
  required this.id,
  this.type,
  required this.chatId,
  required this.totalCount,
  required this.notifications,
});