deleteAllAttachments method

Future<void> deleteAllAttachments()

Delete all attachments

Implementation

Future<void> deleteAllAttachments() async {
  final response = await deleteAllAttachmentsWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}