S360fRadioInput<T> constructor

const S360fRadioInput<T>({
  1. required T value,
  2. T? groupValue,
  3. Key? key,
  4. String? label,
  5. S360fRadioInputSize size = S360fRadioInputSize.medium,
  6. bool readOnly = false,
  7. ValueChanged<T?>? onChanged,
})

Implementation

const S360fRadioInput({
  required this.value,
  this.groupValue,
  super.key,
  this.label,
  this.size = S360fRadioInputSize.medium,
  this.readOnly = false,
  this.onChanged,
});