getKeys abstract method
Returns all keys currently stored. Returns List of keys. Order is implementation-defined (not guaranteed).
Example:
// Get all stored keys
List<String> allKeys = _userStorage!.getKeys();
print("All stored keys: $allKeys");
Implementation
List<String> getKeys();