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