ClipOval constructor

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

Creates an oval-shaped clip.

If clipper is null, the oval will be inscribed into the layout size and position of the child.

If clipBehavior is Clip.none, no clipping will be applied.

Implementation

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