BasicRadio<T> constructor

const BasicRadio<T>({
  1. required T value,
  2. required T groupValue,
  3. required ValueChanged<T?>? onChanged,
  4. Key? key,
})

Implementation

const BasicRadio({
  required this.value,
  required this.groupValue,
  required this.onChanged,
  super.key,
});