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