bind method

CellIntrinsicWidth bind({
  1. ValueCell<double?>? stepWidth,
  2. ValueCell<double?>? stepHeight,
  3. ValueCell<Widget?>? child,
})

Implementation

CellIntrinsicWidth bind({
  ValueCell<double?>? stepWidth,
  ValueCell<double?>? stepHeight,
  ValueCell<Widget?>? child,
}) =>
    CellIntrinsicWidth(
      stepWidth: stepWidth ?? this.stepWidth,
      stepHeight: stepHeight ?? this.stepHeight,
      child: child ?? this.child,
    );