bind method

CellContainer bind({
  1. ValueCell<AlignmentGeometry?>? alignment,
  2. ValueCell<EdgeInsetsGeometry?>? padding,
  3. ValueCell<Color?>? color,
  4. ValueCell<Decoration?>? decoration,
  5. ValueCell<Decoration?>? foregroundDecoration,
  6. ValueCell<double?>? width,
  7. ValueCell<double?>? height,
  8. ValueCell<BoxConstraints?>? constraints,
  9. ValueCell<EdgeInsetsGeometry?>? margin,
  10. ValueCell<Matrix4?>? transform,
  11. ValueCell<AlignmentGeometry?>? transformAlignment,
  12. ValueCell<Widget?>? child,
  13. 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,
    );