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