PaginationModel constructor

PaginationModel({
  1. int? totalItems,
  2. int? itemCount,
  3. int? itemsPerPage,
  4. int? totalPages,
  5. int? currentPage,
})

Implementation

PaginationModel({
  this.totalItems,
  this.itemCount,
  this.itemsPerPage,
  this.totalPages,
  this.currentPage,
});