bind method

CellCard bind({
  1. ValueCell<Color?>? color,
  2. ValueCell<Color?>? shadowColor,
  3. ValueCell<Color?>? surfaceTintColor,
  4. ValueCell<double?>? elevation,
  5. ValueCell<ShapeBorder?>? shape,
  6. ValueCell<bool>? borderOnForeground,
  7. ValueCell<EdgeInsetsGeometry?>? margin,
  8. ValueCell<Clip?>? clipBehavior,
  9. ValueCell<Widget?>? child,
  10. ValueCell<bool>? semanticContainer,
})

Implementation

CellCard bind({
  ValueCell<Color?>? color,
  ValueCell<Color?>? shadowColor,
  ValueCell<Color?>? surfaceTintColor,
  ValueCell<double?>? elevation,
  ValueCell<ShapeBorder?>? shape,
  ValueCell<bool>? borderOnForeground,
  ValueCell<EdgeInsetsGeometry?>? margin,
  ValueCell<Clip?>? clipBehavior,
  ValueCell<Widget?>? child,
  ValueCell<bool>? semanticContainer,
}) =>
    CellCard(
      color: color ?? this.color,
      shadowColor: shadowColor ?? this.shadowColor,
      surfaceTintColor: surfaceTintColor ?? this.surfaceTintColor,
      elevation: elevation ?? this.elevation,
      shape: shape ?? this.shape,
      borderOnForeground: borderOnForeground ?? this.borderOnForeground,
      margin: margin ?? this.margin,
      clipBehavior: clipBehavior ?? this.clipBehavior,
      child: child ?? this.child,
      semanticContainer: semanticContainer ?? this.semanticContainer,
    );