getClip method
Returns a description of the clip given that the render object being clipped is of the given size.
Implementation
@override
Path getClip(Size size) {
return Path()
..addOval(Rect.fromCircle(
center: Offset(width * 0.456, height * 0.43),
radius: (height + width) * 0.17))
..addRect(Rect.fromLTWH(0.0, 0.0, width, height))
..fillType = PathFillType.evenOdd;
}