changeTheme method
Changes the current theme mode to the specified mode.
Example:
themeService.changeTheme(ThemeMode.dark);
Implementation
void changeTheme(ThemeMode mode) {
runInAction(() => currentMode.value = mode);
}
Changes the current theme mode to the specified mode.
Example:
themeService.changeTheme(ThemeMode.dark);
void changeTheme(ThemeMode mode) {
runInAction(() => currentMode.value = mode);
}