BasePaginationResponse constructor

BasePaginationResponse({
  1. int? start,
  2. int? end,
  3. int? limit,
  4. int? pageCount,
  5. int? total,
  6. int? page,
})

Implementation

BasePaginationResponse({
  this.start,
  this.end,
  this.limit,
  this.pageCount,
  this.total,
  this.page
});