value property

T value
inherited

The primary value being stored in this knob.

Implementation

T value;
  1. @override
void value=(T newValue)
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;
}