value property
The current value the node represents (for example a reading on a gauge), read after label.
Implementation
String? get value => _value;
Implementation
set value(String? newValue) {
_assertConvenience();
if (newValue == _value) return;
_value = newValue;
_bump();
}