Radio<T> constructor
const
Radio<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- ValueChanged<
T?> ? onChanged, - FocusNode? focusNode,
- Color? activeColor,
- Color? checkColor,
Creates a Radio with the given value and groupValue.
Implementation
const Radio({
super.key,
required this.value,
required this.groupValue,
this.onChanged,
this.focusNode,
this.activeColor,
this.checkColor,
});