ServicePagination constructor

ServicePagination({
  1. int? limit,
  2. int? page,
  3. int? pages,
  4. int? total,
  5. PaginationLinks? links,
  6. ServiceCollection? embedded,
})

Returns a new ServicePagination instance.

Implementation

ServicePagination({
  this.limit,
  this.page,
  this.pages,
  this.total,
  this.links,
  this.embedded,
});