changeAppThemeMode method
Implementation
changeAppThemeMode(AcxAppThemeType? themeType) async {
AcxAppTheme.defaultThemeType = themeType!;
SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
await sharedPreferences.setInt("Acx_app_theme_mode", themeType.index);
log(AcxAppTheme.getThemeFromThemeMode().toString());
notifyListeners();
}