TRadioButton<T> constructor

const TRadioButton<T>({
  1. Key? key,
  2. required T value,
  3. T? groupValue,
  4. required ValueChanged<T>? onChanged,
  5. required String label,
  6. String? description,
  7. String? error,
  8. bool isDisabled = false,
  9. bool isError = false,
})

Implementation

const TRadioButton({
  super.key,
  required this.value,
  this.groupValue,
  required this.onChanged,
  required this.label,
  this.description,
  this.error,
  this.isDisabled = false,
  this.isError = false,
});