setThemeMode method

Future<void> setThemeMode(
  1. ThemeMode mode
)

Implementation

Future<void> setThemeMode(ThemeMode mode) async {
  await _storage.write(key: _key, value: mode.name);
  state = mode;
}