setSwapDarkColors method
Implementation
void setSwapDarkColors(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _swapDarkColors) return;
_swapDarkColors = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keySwapDarkColors, value));
}