SliverPullUpRefresh constructor

const SliverPullUpRefresh({
  1. Key? key,
  2. required PullUpCallback onRefresh,
  3. required List<Widget> slivers,
  4. double triggerDistance = 60.0,
  5. double indicatorSize = 36.0,
  6. Color? indicatorColor,
  7. bool autoPull = false,
  8. int pullDuration = 5000,
  9. double slideDistance = 16.0,
  10. ScrollController? controller,
})

Implementation

const SliverPullUpRefresh({
  super.key,
  required this.onRefresh,
  required this.slivers,
  this.triggerDistance = 60.0,
  this.indicatorSize = 36.0,
  this.indicatorColor,
  this.autoPull = false,
  this.pullDuration = 5000,
  this.slideDistance = 16.0,
  this.controller,
});