SubZeroCard constructor

const SubZeroCard({
  1. Key? key,
  2. SubZeroCardHeader? header,
  3. SubZeroCardMedia? media,
  4. Widget? body,
  5. List<Widget>? actions,
  6. VoidCallback? onTap,
  7. VoidCallback? onLongPress,
  8. SubZeroCardElevation elevation = SubZeroCardElevation.medium,
  9. BorderRadius? borderRadius,
  10. Color? backgroundColor,
  11. Color? borderColor,
  12. bool showBorder = false,
  13. EdgeInsets? padding,
  14. double? width,
  15. double? height,
  16. String? semanticLabel,
  17. Clip clipBehavior = Clip.antiAlias,
})

Implementation

const SubZeroCard({
  super.key,
  this.header,
  this.media,
  this.body,
  this.actions,
  this.onTap,
  this.onLongPress,
  this.elevation = SubZeroCardElevation.medium,
  this.borderRadius,
  this.backgroundColor,
  this.borderColor,
  this.showBorder = false,
  this.padding,
  this.width,
  this.height,
  this.semanticLabel,
  this.clipBehavior = Clip.antiAlias,
});