FitRadioCards constructor

const FitRadioCards({
  1. Key? key,
  2. Widget? title,
  3. required List<(String, String)> options,
  4. int selectedIndex = _defaultPreSelectedIndex,
  5. dynamic onSelectionChanged(
    1. int
    )?,
})

Creates a new FitRadioCards.

Implementation

const FitRadioCards({
  super.key,
  this.title,
  required this.options,
  this.selectedIndex = _defaultPreSelectedIndex,
  this.onSelectionChanged,
});