MephistoRadioButtonWithAll constructor

const MephistoRadioButtonWithAll({
  1. Key? key,
  2. required List<ListItem> itemList,
  3. required List<int> selectedIndices,
  4. Function? onSelect,
  5. String? label,
})

Implementation

const MephistoRadioButtonWithAll({
  super.key,
  required this.itemList,
  required this.selectedIndices,
  this.onSelect,
  this.label,
});