FitRadioChips constructor

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

Creates a new FitRadioChips.

Implementation

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