setDark static method

Future<void> setDark()

setDark changes the theme mode to dark.

Implementation

static Future<void> setDark() async {
  await _themeStorageService.setThemeMode(ThemeMode.dark);
}