CyberRadioBox constructor

const CyberRadioBox({
  1. Key? key,
  2. required dynamic text,
  3. required dynamic group,
  4. required dynamic value,
  5. String? label,
  6. TextStyle? labelStyle,
  7. bool enabled = true,
  8. dynamic isVisible = true,
  9. ValueChanged? onChanged,
  10. dynamic onLeaver(
    1. dynamic
    )?,
  11. Color? activeColor,
  12. Color? fillColor,
  13. double? size,
})

Implementation

const CyberRadioBox({
  super.key,
  required this.text,
  required this.group,
  required this.value,
  this.label,
  this.labelStyle,
  this.enabled = true,
  this.isVisible = true,
  this.onChanged,
  this.onLeaver,
  this.activeColor,
  this.fillColor,
  this.size,
});