Fix #15: PCI-DSS compliance - remove persistent CVV storage from Flutter apps

This commit is contained in:
Hamza-Ayed
2026-06-17 07:26:27 +03:00
parent 16331bd35d
commit 0e28814e7d
7 changed files with 16 additions and 39 deletions

View File

@@ -19,6 +19,10 @@ class SecureStorage {
final String? value = await storage.read(key: boxName);
return value.toString();
}
Future<void> deleteData(String key) async {
await storage.delete(key: key);
}
}
class AppInitializer {