setThemeMode method

void setThemeMode(
  1. ThemeMode value
)

Sets a new value to the themeMode.

Implementation

void setThemeMode(ThemeMode value) {
  if (themeMode.value == value) return;
  themeMode.value = value;
  _preferences.setString(_themeModeKey, value.name);
}