deleteAllKeys method

Future<void> deleteAllKeys()

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);
}