loadCustomTheme static method

Future<void> loadCustomTheme()

Implementation

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