자르고 싶은 형태를 SVG로 저장 후 아래의 링크에서 코드로 변환

https://itchylabs.com/tools/path-to-bezier/

 
class CustomClip extends CustomClipper<Path> {
  @override
  Path getClip(Size size) {
   ...
  }
 
  @override
  bool shouldReclip(covariant CustomClipper<Path> oldClipper) {
    throw UnimplementedError();
  }
}
ClipPath(
	clipper: clipper,
	child: ...
)