deleteAllKeys method
Delete all shared keys from the database and clear the cache
Implementation
Future<void> deleteAllKeys() async {
_sharedKeysCache.clear(); // Clear the cache
await _database.delete(tableSharedKeys);
}
Delete all shared keys from the database and clear the cache
Future<void> deleteAllKeys() async {
_sharedKeysCache.clear(); // Clear the cache
await _database.delete(tableSharedKeys);
}