ClipOval constructor

const ClipOval({Key key, CustomClipper<Rect> clipper, Clip clipBehavior: Clip.antiAlias, Widget child })

Creates an oval-shaped clip.

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

Implementation

const ClipOval({ Key key, this.clipper, this.clipBehavior = Clip.antiAlias, Widget child }) : super(key: key, child: child);