clearSavedTheme method
Clear all saved theme data.
Useful for testing and development to reset theme preferences.
Implementation
Future<void> clearSavedTheme() async {
await _storage.clearAll();
_preferredLightThemeId = null;
_preferredDarkThemeId = null;
}