FeatureCard constructor

const FeatureCard({
  1. required String title,
  2. required String description,
  3. Component? icon,
  4. String? href,
  5. void onTap()?,
  6. bool showArrow = false,
  7. bool horizontal = false,
  8. Key? key,
})

Implementation

const FeatureCard({
  required this.title,
  required this.description,
  this.icon,
  this.href,
  this.onTap,
  this.showArrow = false,
  this.horizontal = false,
  super.key,
});