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