CellCard constructor
const
CellCard({
- Key? key,
- ValueCell<
Color?> ? color, - ValueCell<
Color?> ? shadowColor, - ValueCell<
Color?> ? surfaceTintColor, - ValueCell<
double?> ? elevation, - ValueCell<
ShapeBorder?> ? shape, - ValueCell<
bool> borderOnForeground = const ValueCell.value(true), - ValueCell<
EdgeInsetsGeometry?> ? margin, - ValueCell<
Clip?> ? clipBehavior, - ValueCell<
Widget?> ? child, - ValueCell<
bool> semanticContainer = const ValueCell.value(true),
Implementation
const CellCard({
super.key,
this.color,
this.shadowColor,
this.surfaceTintColor,
this.elevation,
this.shape,
this.borderOnForeground = const ValueCell.value(true),
this.margin,
this.clipBehavior,
this.child,
this.semanticContainer = const ValueCell.value(true),
});