value property
Gets the current value of T.
Implementation
T? get value => _value;
Sets the current value of T and calls updateListener.
Implementation
set value(T? newValue) {
_value = newValue;
updateListener?.call(_value);
}
Gets the current value of T.
T? get value => _value;
Sets the current value of T and calls updateListener.
set value(T? newValue) {
_value = newValue;
updateListener?.call(_value);
}