value property

  1. @override
T get value
override

Gets the current value of this VN.

Implementation

@override
T get value => _value;
set value (T newValue)

Sets a new value for this VN using the configured change behavior.

The behavior is determined by the ChangeType specified during initialization.

Implementation

set value(T newValue) => _valueSetter(newValue);