deleteSprint method

Future<void> deleteSprint(
  1. int sprintId
)

Deletes a sprint. Once a sprint is deleted, all open issues in the sprint will be moved to the backlog.

Implementation

Future<void> deleteSprint(int sprintId) async {
  await _client.send(
    'delete',
    'rest/agile/1.0/sprint/{sprintId}',
    pathParameters: {
      'sprintId': '$sprintId',
    },
  );
}