bind method
CellContainer
bind({
- ValueCell<
AlignmentGeometry?> ? alignment, - ValueCell<
EdgeInsetsGeometry?> ? padding, - ValueCell<
Color?> ? color, - ValueCell<
Decoration?> ? decoration, - ValueCell<
Decoration?> ? foregroundDecoration, - ValueCell<
double?> ? width, - ValueCell<
double?> ? height, - ValueCell<
BoxConstraints?> ? constraints, - ValueCell<
EdgeInsetsGeometry?> ? margin, - ValueCell<
Matrix4?> ? transform, - ValueCell<
AlignmentGeometry?> ? transformAlignment, - ValueCell<
Widget?> ? child, - ValueCell<
Clip> ? clipBehavior,
Implementation
CellContainer bind({
ValueCell<AlignmentGeometry?>? alignment,
ValueCell<EdgeInsetsGeometry?>? padding,
ValueCell<Color?>? color,
ValueCell<Decoration?>? decoration,
ValueCell<Decoration?>? foregroundDecoration,
ValueCell<double?>? width,
ValueCell<double?>? height,
ValueCell<BoxConstraints?>? constraints,
ValueCell<EdgeInsetsGeometry?>? margin,
ValueCell<Matrix4?>? transform,
ValueCell<AlignmentGeometry?>? transformAlignment,
ValueCell<Widget?>? child,
ValueCell<Clip>? clipBehavior,
}) =>
CellContainer(
alignment: alignment ?? this.alignment,
padding: padding ?? this.padding,
color: color ?? this.color,
decoration: decoration ?? this.decoration,
foregroundDecoration: foregroundDecoration ?? this.foregroundDecoration,
width: width ?? this.width,
height: height ?? this.height,
constraints: constraints ?? this.constraints,
margin: margin ?? this.margin,
transform: transform ?? this.transform,
transformAlignment: transformAlignment ?? this.transformAlignment,
child: child ?? this.child,
clipBehavior: clipBehavior ?? this.clipBehavior,
);