clipOval method
Wrap a widget in ClipOval.
Implementation
ClipOval clipOval({
Key? key,
CustomClipper<Rect>? clipper,
Clip clipBehavior = Clip.antiAlias,
}) {
return ClipOval(
key: key,
clipper: clipper,
clipBehavior: clipBehavior,
child: this,
);
}