value property
Get the current value
If none exist the default T value in memory is given as the current value
Implementation
@override
T get value {
assert(Notifier.debugAssertNotDisposed(this));
return _value!;
}
Get the current value
If none exist the default T value in memory is given as the current value
@override
T get value {
assert(Notifier.debugAssertNotDisposed(this));
return _value!;
}