setDeviceSize method
Implementation
void setDeviceSize(double? value, [bool notify = true]) {
if (value == null) return;
if (value == _deviceSize) return;
_deviceSize = value;
notifyListeners();
unawaited(_themeService.save(Store.keyDeviceSize, value));
}