deleteObject method
Deletes an object at the specified path.
May throw ContainerNotFoundException.
May throw InternalServerError.
May throw ObjectNotFoundException.
Parameter path :
The path (including the file name) where the object is stored in the
container. Format:
Implementation
Future<void> deleteObject({
required String path,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/${path.split('/').map(Uri.encodeComponent).join('/')}',
exceptionFnMap: _exceptionFns,
);
}