CuReRadio constructor

const CuReRadio({
  1. Key? key,
  2. required dynamic value,
  3. required Function onChanged,
  4. Color? color,
  5. String? label,
  6. required dynamic groupValue,
  7. bool? disabled,
  8. double? size,
  9. IconData? icon,
})

Implementation

const CuReRadio({
  super.key,
  required this.value,
  required this.onChanged,
  this.color,
  this.label,
  required this.groupValue,
  this.disabled,
  this.size,
  this.icon,
});