storeAppearance method

Future<void> storeAppearance()

Stores the current appearance setting in shared preferences.

Implementation

Future<void> storeAppearance() async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.setString(
      'appearance', appearanceNotifier.value.toString().split('.').last);
}