deleteStorageBucket method
Deletes the Storage Bucket with the given storage key and bucket name.
Implementation
Future<void> deleteStorageBucket(StorageBucket bucket) async {
await _client.send('Storage.deleteStorageBucket', {
'bucket': bucket,
});
}