SelectableRadio<T> constructor
const
SelectableRadio<T> ({
- Key? key,
- required T value,
- required T groupValue,
- void onChanged(
- T
- bool filled = false,
- bool disabled = false,
- bool enableSplashColor = false,
- double? size,
- Color? filledColor,
- Border? border,
- Color? activeColor,
- Color? inactiveColor,
- Color? disabledColor,
- Widget? activeChild,
- String? label,
- 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);