FRadioButton<T> constructor
const
FRadioButton<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- required ValueChanged<
T?> ? onChanged, - bool enabled = true,
- FTextStyle? fTextStyle,
- String? label,
- FColorI? fColor,
- double? radioHeight,
- double? radioWidth,
- FColorI? fColorDisabled,
Implementation
const FRadioButton({
Key? key,
required this.value,
required this.groupValue,
required this.onChanged,
this.enabled = true,
this.fTextStyle,
this.label,
this.fColor,
this.radioHeight,
this.radioWidth,
this.fColorDisabled,
}) : super(key: key);