clear method
⚠️ Deletes ALL keys in this storage instance. On the singleton, this includes all app data. On a scoped instance, only that scope's data is cleared.
Implementation
Future<void> clear() async {
await _storage.deleteAll();
}
⚠️ Deletes ALL keys in this storage instance. On the singleton, this includes all app data. On a scoped instance, only that scope's data is cleared.
Future<void> clear() async {
await _storage.deleteAll();
}