RenderSliverContainer constructor

RenderSliverContainer({
  1. double bufferExtent = 0.0,
  2. Clip clipBehavior = Clip.antiAlias,
  3. CustomClipper<Path>? clipper,
  4. bool clipSliverOnly = false,
})

Constructs a RenderSliverContainer with the specified arguments.

Implementation

RenderSliverContainer({
  double bufferExtent = 0.0,
  Clip clipBehavior = Clip.antiAlias,
  CustomClipper<Path>? clipper,
  bool clipSliverOnly = false,
})  : _clipBehavior = clipBehavior,
      _clipper = clipper,
      _bufferExtent = bufferExtent,
      _clipSliverOnly = clipSliverOnly;