bind method

CellLimitedBox bind({
  1. ValueCell<double>? maxWidth,
  2. ValueCell<double>? maxHeight,
  3. ValueCell<Widget?>? child,
})

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,
    );