FeatureCard constructor

const FeatureCard({
  1. required String title,
  2. required String description,
  3. ArcaneGlyph? icon,
  4. String? href,
  5. void onTap()?,
  6. bool horizontal = false,
  7. String? accentColor,
  8. String? ctaText,
  9. bool isExternal = false,
  10. bool showCta = false,
  11. ArcaneStyleData? styles,
  12. ArcaneDecoration? decoration,
  13. Key? key,
})

Implementation

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