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) {
double r = min(size.width, size.height) * 0.5;
return Path()..addOval(Rect.fromCircle(center: Offset(r, r), radius: r));
}