rankIssues method

Future<void> rankIssues({
  1. required Map<String, dynamic> body,
})

Moves (ranks) issues before or after a given issue. At most 50 issues may be ranked at once.

This operation may fail for some issues, although this will be rare. In that case the 207 status code is returned for the whole response and detailed information regarding each issue is available in the response body.

If rankCustomFieldId is not defined, the default rank field will be used.

Implementation

Future<void> rankIssues({required Map<String, dynamic> body}) async {
  await _client.send(
    'put',
    'rest/agile/1.0/issue/rank',
    body: body,
  );
}