InfiniteScrollPagination constructor

const InfiniteScrollPagination({
  1. Key? key,
  2. bool isEnabled = true,
  3. Widget? loadingIndicator,
  4. double preloadOffset = 0.0,
  5. bool canBouncing = true,
  6. bool reverse = false,
  7. required AsyncCallback onLoadMore,
  8. required Widget child,
})

Implementation

const InfiniteScrollPagination({
  super.key,
  this.isEnabled = true,
  this.loadingIndicator,
  this.preloadOffset = 0.0,
  this.canBouncing = true,
  this.reverse = false,
  required this.onLoadMore,
  required this.child,
});