moveIssuesToBoard method

Future<void> moveIssuesToBoard({
  1. required int boardId,
  2. required Map<String, dynamic> body,
})

Move issues from the backog to the board (if they are already in the backlog of that board). This operation either moves an issue(s) onto a board from the backlog (by adding it to the issueList for the board) Or transitions the issue(s) to the first column for a kanban board with backlog. At most 50 issues may be moved at once.

Implementation

Future<void> moveIssuesToBoard(
    {required int boardId, required Map<String, dynamic> body}) async {
  await _client.send(
    'post',
    'rest/agile/1.0/board/{boardId}/issue',
    pathParameters: {
      'boardId': '$boardId',
    },
    body: body,
  );
}