AtomicRadioGroup<T> constructor

const AtomicRadioGroup<T>({
  1. Key? key,
  2. required T? value,
  3. required List<AtomicRadioItem<T>> items,
  4. required ValueChanged<T?>? onChanged,
  5. Axis direction = Axis.vertical,
  6. double? spacing,
  7. double? runSpacing,
  8. Color? activeColor,
  9. Color? inactiveColor,
  10. AtomicRadioSize size = AtomicRadioSize.medium,
  11. bool enabled = true,
})

Implementation

const AtomicRadioGroup({
  super.key,
  required this.value,
  required this.items,
  required this.onChanged,
  this.direction = Axis.vertical,
  this.spacing,
  this.runSpacing,
  this.activeColor,
  this.inactiveColor,
  this.size = AtomicRadioSize.medium,
  this.enabled = true,
});