bind method
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,
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,
);