onInit method
override
Called when the controller is initialized. Loads the saved theme mode from storage (if available).
Implementation
@override
void onInit() {
super.onInit();
// Retrieve the saved theme mode from local storage.
String? savedTheme = _box.read('themeMode');
if (savedTheme != null) {
_themeMode.value = _stringToThemeMode(savedTheme);
}
}