saveTheme method

Future<void> saveTheme(
  1. ThemeType themeType
)

Implementation

Future<void> saveTheme(ThemeType themeType) async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.setInt(themeKey, themeType.index);
}