PageInboxProjection constructor

PageInboxProjection({
  1. List<InboxPreview> content = const [],
  2. PageableObject? pageable,
  3. int? total,
  4. int? totalElements,
  5. int? totalPages,
  6. bool? last,
  7. int? size,
  8. int? number,
  9. Sort? sort,
  10. int? numberOfElements,
  11. bool? first,
  12. bool? empty,
})

Returns a new PageInboxProjection instance.

Implementation

PageInboxProjection({
  this.content = const [],
  this.pageable,
  this.total,
  this.totalElements,
  this.totalPages,
  this.last,
  this.size,
  this.number,
  this.sort,
  this.numberOfElements,
  this.first,
  this.empty,
});