bind method

CellConstraintsTransformBox bind({
  1. ValueCell<Widget?>? child,
  2. ValueCell<TextDirection?>? textDirection,
  3. ValueCell<AlignmentGeometry>? alignment,
  4. ValueCell<BoxConstraints Function(BoxConstraints)>? constraintsTransform,
  5. ValueCell<Clip>? clipBehavior,
  6. ValueCell<String>? debugTransformType,
})

Implementation

CellConstraintsTransformBox bind({
  ValueCell<Widget?>? child,
  ValueCell<TextDirection?>? textDirection,
  ValueCell<AlignmentGeometry>? alignment,
  ValueCell<BoxConstraints Function(BoxConstraints)>? constraintsTransform,
  ValueCell<Clip>? clipBehavior,
  ValueCell<String>? debugTransformType,
}) =>
    CellConstraintsTransformBox(
      child: child ?? this.child,
      textDirection: textDirection ?? this.textDirection,
      alignment: alignment ?? this.alignment,
      constraintsTransform: constraintsTransform ?? this.constraintsTransform,
      clipBehavior: clipBehavior ?? this.clipBehavior,
      debugTransformType: debugTransformType ?? this.debugTransformType,
    );