RadioOption<T> constructor
const
RadioOption<T> ({
- required T value,
- required String label,
- String? description,
- bool disabled = false,
- ArcaneGlyph? icon,
- String? id,
Implementation
const RadioOption({
required this.value,
required this.label,
this.description,
this.disabled = false,
this.icon,
this.id,
});