setBlendDarkOnColors method

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

Implementation

void setBlendDarkOnColors(bool? value, [bool notify = true]) {
  if (value == null) return;
  if (value == _blendDarkOnColors) return;
  _blendDarkOnColors = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyBlendDarkOnColors, value));
}