bind method

CellColoredBox bind({
  1. ValueCell<Color>? color,
  2. ValueCell<Widget?>? child,
})

Implementation

CellColoredBox bind({
  ValueCell<Color>? color,
  ValueCell<Widget?>? child,
}) =>
    CellColoredBox(
      color: color ?? this.color,
      child: child ?? this.child,
    );