PagePaginationDriver<RequestType extends TrayRequest, ResultType> constructor

PagePaginationDriver<RequestType extends TrayRequest, ResultType>(
  1. RequestType request, {
  2. int firstPage = 1,
  3. String pageProperty = 'page',
})

Implementation

PagePaginationDriver(
  RequestType request, {
  this.firstPage = 1,
  this.pageProperty = 'page',
}) : super(request);