InfiniteScrollFuture constructor

const InfiniteScrollFuture({
  1. Key? key,
  2. required AsyncCallback onReloadRequest,
  3. required ScrollWidgetBuilder builder,
  4. ScrollController? scrollController,
  5. double positionToReload = 0.8,
})

Implementation

const InfiniteScrollFuture({
  Key? key,
  required this.onReloadRequest,
  required this.builder,
  this.scrollController,
  this.positionToReload = 0.8,
}) : super(key: key);