Pagination<T> constructor

const Pagination<T>({
  1. int? total,
  2. int? totalPages,
  3. int? currentPage,
  4. List<T>? items,
})

Implementation

const Pagination({
  this.total,
  this.totalPages,
  this.currentPage,
  this.items,
});