HorizontalCard constructor

const HorizontalCard({
  1. required String title,
  2. Key? key,
  3. String? subtitle,
  4. ImageProvider<Object>? image,
  5. SmartButtonWidget? primaryButton,
  6. SmartButtonWidget? secondaryButton,
})

Implementation

const HorizontalCard({
  required this.title,
  super.key,
  this.subtitle,
  this.image,
  this.primaryButton,
  this.secondaryButton,
});