Fix dart warnings

This commit is contained in:
2025-09-21 11:54:45 +02:00
parent 2df5b6ec62
commit f286d7bd0f
3 changed files with 3 additions and 2 deletions

View File

@@ -60,6 +60,9 @@ abstract class SecureStorage implements Service {
/// Use with caution as this operation cannot be undone.
Future<void> deleteAll();
/// Returns all keys incl. values in secure storage
Future<Set<String>> readAll();
/// Returns all keys currently stored in secure storage.
///
/// Useful for debugging or migration purposes.