deleteConnection method
Delete the connection with the provided id.
May throw ForbiddenException.
May throw GoneException.
May throw LimitExceededException.
Implementation
Future<void> deleteConnection({
required String connectionId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/%40connections/${Uri.encodeComponent(connectionId)}',
exceptionFnMap: _exceptionFns,
);
}