bind method
Implementation
CellFittedBox bind({
ValueCell<BoxFit>? fit,
ValueCell<AlignmentGeometry>? alignment,
ValueCell<Clip>? clipBehavior,
ValueCell<Widget?>? child,
}) =>
CellFittedBox(
fit: fit ?? this.fit,
alignment: alignment ?? this.alignment,
clipBehavior: clipBehavior ?? this.clipBehavior,
child: child ?? this.child,
);