InfiniteScrollWidget constructor

const InfiniteScrollWidget({
  1. required Widget child,
  2. void onScroll()?,
  3. void onLoadMore()?,
  4. double triggerOffset = 200.0,
  5. Key? key,
})

Implementation

const InfiniteScrollWidget({
  required this.child,
  this.onScroll,
  this.onLoadMore,
  this.triggerOffset = 200.0,
  super.key,
});