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