SubZeroOnboardingCard constructor

const SubZeroOnboardingCard({
  1. Key? key,
  2. required String title,
  3. required String description,
  4. Widget? mediaWidget,
  5. String? primaryButtonLabel,
  6. String? secondaryButtonLabel,
  7. VoidCallback? onPrimaryPressed,
  8. VoidCallback? onSecondaryPressed,
  9. bool showPrimaryTrailingIcon = true,
  10. bool showSecondaryTrailingIcon = true,
  11. double? width,
})

Implementation

const SubZeroOnboardingCard({
  super.key,
  required this.title,
  required this.description,
  this.mediaWidget,
  this.primaryButtonLabel,
  this.secondaryButtonLabel,
  this.onPrimaryPressed,
  this.onSecondaryPressed,
  this.showPrimaryTrailingIcon = true,
  this.showSecondaryTrailingIcon = true,
  this.width,
});