savePreferredDarkThemeId method

Future<void> savePreferredDarkThemeId(
  1. String themeId
)

Save the preferred dark theme ID.

Implementation

Future<void> savePreferredDarkThemeId(String themeId) async {
  await _secureStorage.write(key: _preferredDarkThemeIdKey, value: themeId);
}