PaginatedUserNotificationList constructor

PaginatedUserNotificationList({
  1. int? count,
  2. String? next,
  3. String? previous,
  4. List<UserNotification> results = const [],
})

Returns a new PaginatedUserNotificationList instance.

Implementation

PaginatedUserNotificationList({
  this.count,
  this.next,
  this.previous,
  this.results = const [],
});