SubZeroRadioGroup<T> constructor

const SubZeroRadioGroup<T>({
  1. Key? key,
  2. required List<T> items,
  3. required ValueChanged<T?> onChanged,
  4. T? initialValue,
  5. bool enabled = true,
  6. SubZeroRadioSize size = SubZeroRadioSize.medium,
  7. Axis direction = Axis.vertical,
  8. double? spacing,
  9. Color? activeColor,
  10. Color? borderColor,
  11. String labelBuilder(
    1. T item
    )?,
})

Implementation

const SubZeroRadioGroup({
  super.key,
  required this.items,
  required this.onChanged,
  this.initialValue,
  this.enabled = true,
  this.size = SubZeroRadioSize.medium,
  this.direction = Axis.vertical,
  this.spacing,
  this.activeColor,
  this.borderColor,
  this.labelBuilder,
});