Pagination<T> constructor

const Pagination<T>({
  1. required int page,
  2. required int total,
  3. required int pageSize,
  4. required int lastPage,
  5. required List<T> results,
})

Implementation

const Pagination({
  required this.page,
  required this.total,
  required this.pageSize,
  required this.lastPage,
  required this.results,
});