readThemeId method

Future<String?> readThemeId()

Read the saved theme ID.

Implementation

Future<String?> readThemeId() async {
  return await _secureStorage.read(key: _themeIdKey);
}