RadioText<T> constructor

const RadioText<T>({
  1. Key? key,
  2. required T? groupValue,
  3. required T? value,
  4. Color? defaultColor,
  5. Color? activeColor,
  6. Color? activeFontColor,
  7. Color? defaultFontColor,
  8. EdgeInsets? padding,
  9. dynamic onChanged(
    1. T?
    )?,
  10. required String? label,
})

Implementation

const RadioText({super.key,
  required this.groupValue,
  required this.value,
  this.defaultColor,
  this.activeColor,
  this.activeFontColor,
  this.defaultFontColor,
  this.padding,
  this.onChanged,
  required this.label});