Future<String> getStringOrDefault(String key, String defaultValue) async { return await _storage.read(key: key) ?? defaultValue; }