wakeupState property
DeviceWakeupState?
get
wakeupState
Implementation
DeviceWakeupState? get wakeupState => _wakeupState;
set
wakeupState
(DeviceWakeupState? value)
Implementation
set wakeupState(DeviceWakeupState? value) {
if (value != _wakeupState) {
_wakeupState = value;
notifyListeners<WakeupStateChanged>((WakeupStateChanged func) {
func(this, _wakeupState);
});
}
}