value property

T get value

Gets the underlying value using the ValueWrapper's getter.

Implementation

T get value => $1();
set value (T newValue)

Sets the underlying value to newValue using the ValueWrapper's setter.

Implementation

set value(T newValue) => $2(newValue);