setAdaptiveSplash method

void setAdaptiveSplash(
  1. AdaptiveTheme? value, [
  2. bool notify = true
])

Implementation

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