changeTheme method

void changeTheme(
  1. ThemeMode mode
)

Changes the current theme mode to the specified mode.

Example:

themeService.changeTheme(ThemeMode.dark);

Implementation

void changeTheme(ThemeMode mode) {
  runInAction(() => currentMode.value = mode);
}