CLCard constructor

const CLCard({
  1. Key? key,
  2. required Color color,
  3. required String title,
  4. dynamic onTap()?,
  5. required IconData icon,
  6. required bool vertical,
  7. required String subtitle,
})

Implementation

const CLCard({
  super.key,
  required this.color,
  required this.title,
  this.onTap,
  required this.icon,
  required this.vertical,
  required this.subtitle,
});