bind method

CellCenter bind({
  1. ValueCell<double?>? widthFactor,
  2. ValueCell<double?>? heightFactor,
  3. ValueCell<Widget?>? child,
})

Implementation

CellCenter bind({
  ValueCell<double?>? widthFactor,
  ValueCell<double?>? heightFactor,
  ValueCell<Widget?>? child,
}) =>
    CellCenter(
      widthFactor: widthFactor ?? this.widthFactor,
      heightFactor: heightFactor ?? this.heightFactor,
      child: child ?? this.child,
    );