PullUpRefresh constructor
const
PullUpRefresh({
- Key? key,
- required Widget child,
- required PullUpCallback onRefresh,
- double triggerDistance = 60.0,
- double indicatorSize = 36.0,
- Color? indicatorColor,
- bool autoPull = false,
- int pullDuration = 5000,
- double slideDistance = 16.0,
- ScrollController? controller,
Implementation
const PullUpRefresh({
super.key,
required this.child,
required this.onRefresh,
this.triggerDistance = 60.0,
this.indicatorSize = 36.0,
this.indicatorColor,
this.autoPull = false,
this.pullDuration = 5000,
this.slideDistance = 16.0,
this.controller,
});