setThemeMode method
- ThemeMode mode
Updates the theme mode and saves the selection to persistent storage.
mode
: The newThemeMode
to apply.
Implementation
void setThemeMode(ThemeMode mode) {
_themeMode.value = mode;
_box.write('themeMode', mode.toString()); // Save the selection
Get.changeThemeMode(mode); // Apply the new theme mode
}