MiniRadio<T> constructor
const
MiniRadio<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- ValueChanged<
T> ? onChanged, - String? label,
- bool disabled = false,
Implementation
const MiniRadio({
super.key,
required this.value,
required this.groupValue,
this.onChanged,
this.label,
this.disabled = false,
});