InternalServicePagination constructor

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

Returns a new InternalServicePagination instance.

Implementation

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