S360fRadioGroup<T> constructor

const S360fRadioGroup<T>({
  1. required List<S360fRadioOption<T>> options,
  2. Key? key,
  3. T? value,
  4. bool readOnly = false,
  5. ValueChanged<T?>? onChanged,
  6. S360fRadioInputSize size = S360fRadioInputSize.medium,
  7. Axis direction = Axis.vertical,
  8. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  9. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
})

Implementation

const S360fRadioGroup({
  required this.options,
  super.key,
  this.value,
  this.readOnly = false,
  this.onChanged,
  this.size = S360fRadioInputSize.medium,
  this.direction = Axis.vertical,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.start,
});