loadCustomTheme static method
Implementation
static Future<void> loadCustomTheme() async {
final json = await SharedPreferencesHelper.getCustomTheme();
if (json != null) {
fromJson(json);
}
}
static Future<void> loadCustomTheme() async {
final json = await SharedPreferencesHelper.getCustomTheme();
if (json != null) {
fromJson(json);
}
}