SignerPagination constructor

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

Returns a new SignerPagination instance.

Implementation

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