saveThemeName static method

Future<bool> saveThemeName(
  1. String themeName
)

Implementation

static Future<bool> saveThemeName(String themeName) async {
  final prefs = await SharedPreferences.getInstance();
  return await prefs.setString("app_theme", themeName);
}