FeatureCard.accented constructor

const FeatureCard.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,
  9. ArcaneStyleData? styles,
  10. ArcaneDecoration? decoration,
  11. Key? key,
})

Creates a feature card with accent color styling and a CTA row.

Implementation

const FeatureCard.accented({
  required this.title,
  required this.description,
  required Widget this.icon,
  required String this.accentColor,
  this.href,
  this.onTap,
  this.ctaText,
  this.isExternal = false,
  this.styles,
  this.decoration,
  super.key,
}) : showArrow = false,
     horizontal = false,
     showCta = true;