ClipRRectModifier constructor
const
ClipRRectModifier({
- Key? key,
- Widget? child,
- BorderRadiusGeometry? borderRadius = BorderRadius.zero,
- CustomClipper<
RRect> ? clipper, - Clip clipBehavior = Clip.antiAlias,
Creates a rounded-rectangular clip.
The borderRadius
defaults to BorderRadius.zero, i.e. a rectangle with
right-angled corners.
If clipper
is non-null, then borderRadius
is ignored.
The clipBehavior
argument must not be null. If clipBehavior
is
Clip.none, no clipping will be applied.
Implementation
const ClipRRectModifier({
super.key,
super.child,
this.borderRadius = BorderRadius.zero,
this.clipper,
this.clipBehavior = Clip.antiAlias,
}) : assert(borderRadius != null || clipper != null);