RefreshPhysics constructor
RefreshPhysics({
- ScrollPhysics? parent,
- int? updateFlag,
- double? maxUnderScrollExtent,
- SpringDescription? springDescription,
- RefreshController? controller,
- double? dragSpeedRatio,
- double? topHitBoundary,
- double? bottomHitBoundary,
- bool? enableScrollWhenRefreshCompleted,
- bool? enableScrollWhenTwoLevel,
- double? maxOverScrollExtent,
Creates scroll physics that bounce back from the edge.
Implementation
RefreshPhysics(
{ScrollPhysics? parent,
this.updateFlag,
this.maxUnderScrollExtent,
this.springDescription,
this.controller,
this.dragSpeedRatio,
this.topHitBoundary,
this.bottomHitBoundary,
this.enableScrollWhenRefreshCompleted,
this.enableScrollWhenTwoLevel,
this.maxOverScrollExtent})
: super(parent: parent);