clipPath method
Implementation
Widget clipPath(
{Clip clipBehavior = Clip.antiAlias,
required CustomClipper<Path> clipper}) {
return ClipPath(
clipBehavior: clipBehavior,
clipper: clipper,
child: this,
);
}
Widget clipPath(
{Clip clipBehavior = Clip.antiAlias,
required CustomClipper<Path> clipper}) {
return ClipPath(
clipBehavior: clipBehavior,
clipper: clipper,
child: this,
);
}