deleteCollection method
Drop an entire collection (namespace) and all blobs within it.
Returns true if the collection existed and was removed.
Implementation
@override
Future<bool> deleteCollection(String collection) async {
_ensureOpen();
final existed = _storage.containsKey(collection);
_storage.remove(collection);
return existed;
}