RenderClipOval({RenderBox child, CustomClipper<Rect> clipper })

Creates an oval-shaped clip.

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

Source

RenderClipOval({
  RenderBox child,
  CustomClipper<Rect> clipper
}) : super(child: child, clipper: clipper);