moveIssuesToBacklog method
Move issues to the backlog. This operation is equivalent to remove future and active sprints from a given set of issues. At most 50 issues may be moved at once.
Implementation
Future<void> moveIssuesToBacklog({required Map<String, dynamic> body}) async {
await _client.send(
'post',
'rest/agile/1.0/backlog/issue',
body: body,
);
}