ExternalServicePagination constructor

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

Returns a new ExternalServicePagination instance.

Implementation

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