bind method

CellFittedBox bind({
  1. ValueCell<BoxFit>? fit,
  2. ValueCell<AlignmentGeometry>? alignment,
  3. ValueCell<Clip>? clipBehavior,
  4. ValueCell<Widget?>? child,
})

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