bind method

CellClipRect bind({
  1. ValueCell<CustomClipper<Rect>?>? clipper,
  2. ValueCell<Clip>? clipBehavior,
  3. ValueCell<Widget?>? child,
})

Implementation

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