Value<T> constructor
Value<T> (
- T val
Creates a new Value with the initial value.
Implementation
Value(T val) {
_value = val;
_fillInitialStatus();
}
Creates a new Value with the initial value.
Value(T val) {
_value = val;
_fillInitialStatus();
}