BsRadio<T> constructor
const
BsRadio<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- required ValueChanged<
T?> ? onChanged, - Widget? label,
- bool inline = false,
- bool reverse = false,
- bool disabled = false,
- BsValidationState? validationState,
Creates a BsRadio selection control.
Implementation
const BsRadio({
super.key,
required this.value,
required this.groupValue,
required this.onChanged,
this.label,
this.inline = false,
this.reverse = false,
this.disabled = false,
this.validationState,
});