ZetaRadio<T> constructor

const ZetaRadio<T>({
  1. Key? key,
  2. bool? rounded,
  3. required T value,
  4. T? groupValue,
  5. ValueChanged<T?>? onChanged,
  6. Widget? label,
})

Constructor for ZetaRadio.

Implementation

const ZetaRadio({
  super.key,
  super.rounded,
  required this.value,
  this.groupValue,
  this.onChanged,
  this.label,
});