TodayRadio constructor

const TodayRadio({
  1. Key? key,
  2. String? label,
  3. String? description,
  4. required TodayRadioValue value,
  5. required TodayRadioValue groupValue,
  6. bool contained = false,
  7. bool disabled = false,
  8. bool disableAutoUpdate = false,
  9. required dynamic onChanged(
    1. TodayRadioValue
    ),
  10. bool fitted = true,
  11. double fittedTextWidth = 0,
  12. bool detailsSpacing = true,
  13. TodayBadge? badge,
})

Implementation

const TodayRadio({
  super.key,
  this.label,
  this.description,
  required this.value,
  required this.groupValue,
  this.contained = false,
  this.disabled = false,
  this.disableAutoUpdate = false,
  required this.onChanged,
  this.fitted = true,
  this.fittedTextWidth = 0,
  this.detailsSpacing = true,
  this.badge,
});