setUseSecondary method
Implementation
void setUseSecondary(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _useSecondary) return;
_useSecondary = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyUseSecondary, value));
}