How can I make these top 2 corner Radius Custom Clipper – Flutter
Path getClip(Size size) { var path = Path(); path.lineTo(25,0); path.lineTo(0, size.height); path.lineTo(size.width, size.height); path.lineTo(size.width-25, 0); return path; } this is my custom clipper and I want to make top 2 corner radius The image trying to get.