setSecondaryContainerLight method

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

Implementation

void setSecondaryContainerLight(Color? value, [bool notify = true]) {
  if (value == null) return;
  if (value == _secondaryContainerLight) return;
  _secondaryContainerLight = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keySecondaryContainerLight, value));
}