updateValue method
Set value to the value of the current state.
If value is null it will be [].
This method removes duplicate values.
If you want to add or remove elements from value
of the current state, use select or deselect.
Implementation
@override
void updateValue(List<Value> value) => super.updateValue(value);