clipOval method

Widget clipOval({
  1. Key? key,
  2. bool clip = true,
  3. CustomClipper<Rect>? clipper,
  4. Clip clipBehavior = Clip.antiAlias,
})

Implementation

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