NotificationList constructor

NotificationList({
  1. required List<Notification> notifications,
  2. required int unreadNotification,
  3. Pagination? pagination,
})

Implementation

NotificationList({
  required this.notifications,
  required this.unreadNotification,
  this.pagination,
});