setSurfaceTintLight method

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

Implementation

void setSurfaceTintLight(Color? value, [bool notify = true]) {
  if (value == _surfaceTintLight) return;
  _surfaceTintLight = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keySurfaceTintLight, value));
}