clearSharedStorageEntries method
Clears all entries for a given origin's shared storage.
Implementation
Future<void> clearSharedStorageEntries(String ownerOrigin) async {
await _client.send('Storage.clearSharedStorageEntries', {
'ownerOrigin': ownerOrigin,
});
}