RenderSliverContainer constructor
RenderSliverContainer({
- double bufferExtent = 0.0,
- Clip clipBehavior = Clip.antiAlias,
- CustomClipper<
Path> ? clipper, - 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;