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