SubZeroRadio<T> constructor

const SubZeroRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required ValueChanged<T?>? onChanged,
  5. String? label,
  6. bool enabled = true,
  7. SubZeroRadioSize size = SubZeroRadioSize.medium,
  8. String? semanticLabel,
  9. TextStyle? labelStyle,
  10. Color? activeColor,
  11. Color? borderColor,
})

Implementation

const SubZeroRadio({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.label,
  this.enabled = true,
  this.size = SubZeroRadioSize.medium,
  this.semanticLabel,
  this.labelStyle,
  this.activeColor,
  this.borderColor,
});