value property
inherited
The primary value being stored in this knob.
Implementation
T value;
override
The primary value being stored in this knob.
Implementation
@override
set value(T newValue) {
if (!choices.contains(newValue)) {
throw RohdHclException(
'New value should be one of the available choices.');
}
super.value = newValue;
}