moveResolutions method
Changes the order of issue resolutions.
Permissions required: Administer Jira global permission.
Implementation
Future<dynamic> moveResolutions(
{required ReorderIssueResolutionsRequest body}) async {
return await _client.send(
'put',
'rest/api/3/resolution/move',
body: body.toJson(),
);
}