call method

T call({
  1. CustomClipper<Path>? clipper,
  2. Clip? clipBehavior,
})

Implementation

T call({CustomClipper<Path>? clipper, Clip? clipBehavior}) {
  return builder(
    ClipPathModifierAttribute(clipper: clipper, clipBehavior: clipBehavior),
  );
}