deleteTasksIDOwnersID method

Future<void> deleteTasksIDOwnersID(
  1. String userID,
  2. String taskID, {
  3. String? zapTraceSpan,
})

Remove an owner from a task

Parameters:

  • String userID (required): The ID of the owner to remove.

  • String taskID (required): The task ID.

  • String zapTraceSpan: OpenTracing span context

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));
  }
}