NotificationGroup constructor

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

Describes a group of notifications

Implementation

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