deleteQuote method
Deletes the specified quote.
May throw AccessDeniedException.
May throw InternalServerException.
May throw NotFoundException.
May throw ValidationException.
Parameter quoteIdentifier :
The ID of the quote.
Implementation
Future<void> deleteQuote({
required String quoteIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/quotes/${Uri.encodeComponent(quoteIdentifier)}',
exceptionFnMap: _exceptionFns,
);
}