AtomicRadio<T> constructor

const AtomicRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required ValueChanged<T?>? onChanged,
  5. String? label,
  6. Color? activeColor,
  7. Color? inactiveColor,
  8. AtomicRadioSize size = AtomicRadioSize.medium,
  9. bool enabled = true,
})

Implementation

const AtomicRadio({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.label,
  this.activeColor,
  this.inactiveColor,
  this.size = AtomicRadioSize.medium,
  this.enabled = true,
});