RenderSliverRefresh constructor
RenderSliverRefresh({
- required double refreshIndicatorExtent,
- required bool hasLayoutExtent,
- RenderBox? child,
- double? paintOffsetY,
- RefreshStyle? refreshStyle,
Implementation
RenderSliverRefresh(
{required double refreshIndicatorExtent,
required bool hasLayoutExtent,
RenderBox? child,
this.paintOffsetY,
this.refreshStyle})
: assert(refreshIndicatorExtent >= 0.0),
_refreshIndicatorExtent = refreshIndicatorExtent,
_hasLayoutExtent = hasLayoutExtent {
this.child = child;
}