clipOval method

Widget clipOval({
  1. CustomClipper<Rect>? clipper,
  2. Clip clipBehavior = Clip.antiAlias,
})

Wraps this widget with a ClipOval widget.

Implementation

Widget clipOval({
  CustomClipper<Rect>? clipper,
  Clip clipBehavior = Clip.antiAlias,
}) =>
    ClipOval(
      clipBehavior: clipBehavior,
      clipper: clipper,
      child: this,
    );