SelectionCard constructor

const SelectionCard({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. required String iconPath,
  5. required bool isSelected,
  6. required VoidCallback onTap,
})

Implementation

const SelectionCard({
  super.key,
  required this.title,
  required this.subtitle,
  required this.iconPath,
  required this.isSelected,
  required this.onTap,
});