PageableObject constructor

PageableObject({
  1. int? offset,
  2. Sort? sort,
  3. int? pageNumber,
  4. int? pageSize,
  5. bool? paged,
  6. bool? unpaged,
})

Returns a new PageableObject instance.

Implementation

PageableObject({
  this.offset,
  this.sort,
  this.pageNumber,
  this.pageSize,
  this.paged,
  this.unpaged,
});