PaginationMeta constructor

PaginationMeta({
  1. int? currentPage,
  2. int? pageSize,
  3. int? total,
  4. int? totalPages,
  5. bool? hasNext,
  6. bool? hasPrevious,
})

Implementation

PaginationMeta({
  this.currentPage,
  this.pageSize,
  this.total,
  this.totalPages,
  this.hasNext,
  this.hasPrevious,
});