CellCard constructor

const CellCard({
  1. Key? key,
  2. ValueCell<Color?>? color,
  3. ValueCell<Color?>? shadowColor,
  4. ValueCell<Color?>? surfaceTintColor,
  5. ValueCell<double?>? elevation,
  6. ValueCell<ShapeBorder?>? shape,
  7. ValueCell<bool> borderOnForeground = const ValueCell.value(true),
  8. ValueCell<EdgeInsetsGeometry?>? margin,
  9. ValueCell<Clip?>? clipBehavior,
  10. ValueCell<Widget?>? child,
  11. 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),
});