SliverClipRect constructor

const SliverClipRect({
  1. Key? key,
  2. CustomClipper<Rect>? clipper,
  3. Clip clipBehavior = Clip.hardEdge,
  4. Widget? child,
})

Creates a rectangular clip.

If clipper is null, the clip will match the layout size and position of the child.

The clipBehavior argument must not be null or Clip.none.

Implementation

const SliverClipRect(
    {Key? key,
    this.clipper,
    this.clipBehavior = Clip.hardEdge,
    Widget? child})
    : assert(clipBehavior != null),
      super(key: key, child: child);