removeIssuesFromEpic method

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

Removes issues from epics. The user needs to have the edit issue permission for all issue they want to remove from epics. The maximum number of issues that can be moved in one operation is 50. Note: This operation does not work for epics in next-gen projects. Instead, update the issue using { fields: { parent: {} } }

Implementation

Future<void> removeIssuesFromEpic(
    {required Map<String, dynamic> body}) async {
  await _client.send(
    'post',
    'rest/agile/1.0/epic/none/issue',
    body: body,
  );
}