value property
The current signal value
Implementation
@override
T get value {
if (!_hasValue) {
throw StateError(
'''The signal named "$name" is lazy and has not been initialized yet, cannot access its value''',
);
}
return _value;
}