Gets the current value of this node.
Source
dynamic get value {
if (_lastValueUpdate != null) {
return _lastValueUpdate.value;
}
return null;
}
Gets the current value of this node.
dynamic get value {
if (_lastValueUpdate != null) {
return _lastValueUpdate.value;
}
return null;
}