value property

dynamic get value

Gets the current value of this node.

Implementation

dynamic get value {
  if (_lastValueUpdate != null) {
    return _lastValueUpdate?.value;
  }
  return null;
}