PaginationMeta constructor

PaginationMeta({
  1. required int currentPage,
  2. required int from,
  3. required int lastPage,
  4. required String path,
  5. required int perPage,
  6. required int to,
  7. required int total,
})

Implementation

PaginationMeta({
  required this.currentPage,
  required this.from,
  required this.lastPage,
  required this.path,
  required this.perPage,
  required this.to,
  required this.total,
});