getClip method

  1. @override
Path getClip(
  1. Size size
)
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) {
  final path = Path();

  path.lineTo(size.width * 0.29, 0);
  path.quadraticBezierTo(size.width * 0.35, 0, size.width * 0.38, size.height * lowSize);
  path.quadraticBezierTo(size.width * 0.50, size.height * bigSize, size.width * 0.62, size.height * lowSize);
  path.quadraticBezierTo(size.width * 0.65, 0, size.width * 0.71, 0);
  path.lineTo(size.width, 0);
  path.lineTo(size.width, size.height);
  path.lineTo(0, size.height);
  path.lineTo(0, 0);

  return path;
}