setAdaptiveSplash method
Implementation
void setAdaptiveSplash(AdaptiveTheme? value, [bool notify = true]) {
if (value == _adaptiveSplash) return;
_adaptiveSplash = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyAdaptiveSplash, value));
}