PaginationResponse<T> constructor

const PaginationResponse<T>({
  1. required List<T> items,
  2. required int total,
  3. required int skip,
  4. required int limit,
  5. required bool isLastPage,
  6. dynamic nextPageKey,
})

Implementation

const PaginationResponse({
  required this.items,
  required this.total,
  required this.skip,
  required this.limit,
  required this.isLastPage,
  this.nextPageKey,
});