PaginationData constructor

PaginationData({
  1. required int perPage,
  2. required int totalPages,
})

the constructor which accepts two int

Implementation

PaginationData({
  required this.perPage,
  required this.totalPages,
  // this.nextPageUrl,
});