bind method
Implementation
CellLimitedBox bind({
ValueCell<double>? maxWidth,
ValueCell<double>? maxHeight,
ValueCell<Widget?>? child,
}) =>
CellLimitedBox(
maxWidth: maxWidth ?? this.maxWidth,
maxHeight: maxHeight ?? this.maxHeight,
child: child ?? this.child,
);