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