deleteTasksIDOwnersID method
Remove an owner from a task
Parameters:
Implementation
Future<void> deleteTasksIDOwnersID(String userID, String taskID,
{String? zapTraceSpan}) async {
final response = await deleteTasksIDOwnersIDWithHttpInfo(userID, taskID,
zapTraceSpan: zapTraceSpan);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}