PaginationDetectionResult constructor

PaginationDetectionResult({
  1. required PaginationType type,
  2. String? nextPageUrl,
  3. String? prevPageUrl,
  4. List<String> allPageUrls = const [],
  5. int? currentPage,
  6. int? totalPages,
  7. bool isLastPage = false,
  8. Element? paginationElement,
})

Implementation

PaginationDetectionResult({
  required this.type,
  this.nextPageUrl,
  this.prevPageUrl,
  this.allPageUrls = const [],
  this.currentPage,
  this.totalPages,
  this.isLastPage = false,
  this.paginationElement,
});