RenderClipOval constructor Null safety
- {RenderBox? child,
- CustomClipper<
Rect> ? clipper, - Clip clipBehavior = Clip.antiAlias}
Creates an oval-shaped clip.
If clipper
is null, the oval will be inscribed into the layout size and
position of the child.
The clipBehavior
argument must not be null. If clipBehavior
is
Clip.none, no clipping will be applied.
Implementation
RenderClipOval({
super.child,
super.clipper,
super.clipBehavior,
}) : assert(clipBehavior != null);