clearSharedStorageEntries method

Future<void> clearSharedStorageEntries(
  1. String ownerOrigin
)

Clears all entries for a given origin's shared storage.

Implementation

Future<void> clearSharedStorageEntries(String ownerOrigin) async {
  await _client.send('Storage.clearSharedStorageEntries', {
    'ownerOrigin': ownerOrigin,
  });
}