bind method
CellConstraintsTransformBox
bind({
- ValueCell<
Widget?> ? child, - ValueCell<
TextDirection?> ? textDirection, - ValueCell<
AlignmentGeometry> ? alignment, - ValueCell<
BoxConstraints Function(BoxConstraints)> ? constraintsTransform, - ValueCell<
Clip> ? clipBehavior, - 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,
);