TRadioButton<T> constructor

const TRadioButton<T>({
  1. Key? key,
  2. required String caption,
  3. required T value,
  4. required T? groupValue,
  5. bool enabled = true,
  6. void onChange(
    1. T value
    )?,
  7. TextStyle? font,
  8. bool dense = false,
})

Implementation

const TRadioButton({
  super.key,
  required this.caption,
  required this.value,
  required this.groupValue,
  this.enabled = true,
  this.onChange,
  this.font,
  this.dense = false,
});