setSimulatorDeviceIndex method
Implementation
void setSimulatorDeviceIndex(int? value, [bool notify = true]) {
if (value == null) return;
if (value == _simulatorDeviceIndex) return;
_simulatorDeviceIndex = value;
notifyListeners();
unawaited(_themeService.save(Store.keySimulatorDeviceIndex, value));
}