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) {
final path = Path();
path.moveTo(size.width * 4 / Constants.iconSplitPart, 0.0);
path.lineTo(size.width * 5 / Constants.iconSplitPart, 0.0);
path.lineTo(size.width * 5 / Constants.iconSplitPart, size.height);
path.lineTo(size.width * 4 / Constants.iconSplitPart, size.height);
path.close();
return path;
}