SliverRefresh constructor

const SliverRefresh({
  1. Key? key,
  2. double? paintOffsetY,
  3. double refreshIndicatorLayoutExtent = 0.0,
  4. bool floating = false,
  5. Widget? child,
  6. RefreshStyle? refreshStyle,
})

Implementation

const SliverRefresh({
  Key? key,
  this.paintOffsetY,
  this.refreshIndicatorLayoutExtent = 0.0,
  this.floating = false,
  Widget? child,
  this.refreshStyle,
})  : assert(refreshIndicatorLayoutExtent >= 0.0),
      super(key: key, child: child);