FitSelectableCard constructor

const FitSelectableCard({
  1. Key? key,
  2. void onTap()?,
  3. bool selected = false,
  4. required String title,
  5. required String description,
})

Creates a new FitSelectableCard

Implementation

const FitSelectableCard({
  super.key,
  this.onTap,
  this.selected = false,
  required this.title,
  required this.description,
});