FeatureCardProps.accented constructor

const FeatureCardProps.accented({
  1. required String title,
  2. required String description,
  3. required Widget? icon,
  4. required String accentColor,
  5. String? href,
  6. void onTap()?,
  7. String? ctaText,
  8. bool isExternal = false,
})

Creates a feature card with accent color styling and CTA button. This is the style used for InfoTile-like cards.

Implementation

const FeatureCardProps.accented({
  required this.title,
  required this.description,
  required this.icon,
  required String this.accentColor,
  this.href,
  this.onTap,
  this.ctaText,
  this.isExternal = false,
})  : showArrow = false,
      horizontal = false,
      showCta = true;