bind method
Implementation
CellClipPath bind({
ValueCell<CustomClipper<Path>?>? clipper,
ValueCell<Clip>? clipBehavior,
ValueCell<Widget?>? child,
}) =>
CellClipPath(
clipper: clipper ?? this.clipper,
clipBehavior: clipBehavior ?? this.clipBehavior,
child: child ?? this.child,
);