setSimulatorAppIndex method

void setSimulatorAppIndex(
  1. int? value, [
  2. bool notify = true
])

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));
}