deleteContact method
Implementation
Future<void> deleteContact(String contactId,) async {
final response = await deleteContactWithHttpInfo(contactId,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}