value property
Returns the current value and subscribes to changes in the beacon
when used within a Beacon.effect or Beacon.derived.
Implementation
@override
T get value {
if (_sleeping) {
_wakeUp();
}
return super.value;
}
Returns the current value and subscribes to changes in the beacon
when used within a Beacon.effect or Beacon.derived.
@override
T get value {
if (_sleeping) {
_wakeUp();
}
return super.value;
}