ClipPathModifier constructor

const ClipPathModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. CustomClipper<Path>? clipper,
  5. Clip clipBehavior = Clip.antiAlias,
})

Creates a path clip.

If clipper is null, the clip will be a rectangle that matches the layout size and location of the child. However, rather than use this default, consider using a ClipRect, which can achieve the same effect more efficiently.

The clipBehavior argument must not be null. If clipBehavior is Clip.none, no clipping will be applied.

Implementation

const ClipPathModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.clipper,
  this.clipBehavior = Clip.antiAlias,
});