IconCard constructor

const IconCard({
  1. required String title,
  2. required Component icon,
  3. String? subtitle,
  4. void onTap()?,
  5. String? href,
  6. Key? key,
})

Implementation

const IconCard({
  required this.title,
  required this.icon,
  this.subtitle,
  this.onTap,
  this.href,
  super.key,
});