clear method
Clears all stored data in the underlying adapter.
Example:
await storage.clear();
Implementation
Future<void> clear() async {
await adapter.clear();
}
Clears all stored data in the underlying adapter.
Example:
await storage.clear();
Future<void> clear() async {
await adapter.clear();
}