RenderSliverLoading constructor

RenderSliverLoading({
  1. RenderBox? child,
  2. LoadStatus? mode,
  3. double? layoutExtent,
  4. bool? hasLayoutExtent,
  5. bool? shouldFollowContent,
  6. bool? hideWhenNotFull,
})

Implementation

RenderSliverLoading({
  RenderBox? child,
  this.mode,
  double? layoutExtent,
  bool? hasLayoutExtent,
  this.shouldFollowContent,
  this.hideWhenNotFull,
}) {
  _hasLayoutExtent = hasLayoutExtent;
  this.layoutExtent = layoutExtent;
  this.child = child;
}