saveThemeId method

Future<void> saveThemeId(
  1. String themeId
)

Save the current theme ID.

Implementation

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