MRadioChip<T> constructor

const MRadioChip<T>({
  1. Key? key,
  2. required List<MRadioItem<T>> items,
  3. MRadioChipType type = MRadioChipType.icon,
  4. dynamic onChanged(
    1. T
    )?,
  5. T? value,
  6. String? label,
})

Implementation

const MRadioChip({Key? key, required this.items, this.type = MRadioChipType.icon, this.onChanged, this.value, this.label}) : super(key: key);