SelectableRadio<T> constructor

const SelectableRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T groupValue,
  4. void onChanged(
    1. T
    )?,
  5. bool filled = false,
  6. bool disabled = false,
  7. bool enableSplashColor = false,
  8. double? size,
  9. Color? filledColor,
  10. Border? border,
  11. Color? activeColor,
  12. Color? inactiveColor,
  13. Color? disabledColor,
  14. Widget? activeChild,
  15. String? label,
  16. TextStyle? labelStyle,
})

Implementation

const SelectableRadio({
  Key? key,
  required this.value,
  required this.groupValue,
  this.onChanged,
  this.filled = false,
  this.disabled = false,
  this.enableSplashColor = false,
  this.size,
  this.filledColor,
  this.border,
  this.activeColor,
  this.inactiveColor,
  this.disabledColor,
  this.activeChild,
  this.label,
  this.labelStyle,
}) : super(key: key);