getClip method
- @override
Returns a description of the clip given that the render object being clipped is of the given size.
Implementation
@override
Path getClip(Size size) {
Path path = new Path();
path.moveTo(size.width / 2, 0.0);
path.lineTo(
(size.width / 100) * 10, size.height / 2 - ((size.height / 100) * 10));
path.lineTo(size.width / 2, size.height);
path.lineTo(size.width - ((size.width / 100) * 10), size.height / 2 - ((size.height / 100) * 10));
path.lineTo(size.width / 2, 0.0);
path.close();
return path;
}