setThemeMode method

void setThemeMode(
  1. ThemeMode value
)

Sets the theme mode for the application.

Implementation

void setThemeMode(ThemeMode value) {
  config = config.copyWith(themeMode: value);
  update();
}