Future<void> setValue(String key, String value) async { _cache[key] = value; try { await SecureStorage.storeSecureData(key, value); } catch (e) { } }