NotificationListResponse constructor

NotificationListResponse({
  1. List<NotificationViewModel>? items,
  2. int? unseenCount,
  3. int? totalCount,
})

Implementation

NotificationListResponse({
  this.items,
  this.unseenCount,
  this.totalCount,
});