SubZeroHorizontalCard constructor

const SubZeroHorizontalCard({
  1. Key? key,
  2. Widget? leading,
  3. String? title,
  4. String? subtitle,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. VoidCallback? onLongPress,
  8. SubZeroCardElevation elevation = SubZeroCardElevation.low,
  9. Color? backgroundColor,
  10. bool showBorder = false,
  11. EdgeInsets? padding,
  12. String? semanticLabel,
})

Implementation

const SubZeroHorizontalCard({
  super.key,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.onLongPress,
  this.elevation = SubZeroCardElevation.low,
  this.backgroundColor,
  this.showBorder = false,
  this.padding,
  this.semanticLabel,
});