bind method

CellFractionallySizedBox bind({
  1. ValueCell<AlignmentGeometry>? alignment,
  2. ValueCell<double?>? widthFactor,
  3. ValueCell<double?>? heightFactor,
  4. ValueCell<Widget?>? child,
})

Implementation

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