FeatureCard.accented constructor
const
FeatureCard.accented({
- required String title,
- required String description,
- required Widget icon,
- required String accentColor,
- String? href,
- void onTap()?,
- String? ctaText,
- bool isExternal = false,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
- 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;