clipPath method
ClipPath
clipPath({
- Key? key,
- BorderRadius borderRadius = BorderRadius.zero,
- CustomClipper<
Path> ? clipper, - Clip clipBehavior = Clip.antiAlias,
Implementation
ClipPath clipPath({
Key? key,
BorderRadius borderRadius = BorderRadius.zero,
CustomClipper<Path>? clipper,
Clip clipBehavior = Clip.antiAlias,
}) {
return ClipPath(
key: key,
clipper: clipper,
clipBehavior: clipBehavior,
child: this,
);
}