deleteBoard method
Deletes the board. Admin without the view permission can still remove the board.
Implementation
Future<void> deleteBoard(int boardId) async {
await _client.send(
'delete',
'rest/agile/1.0/board/{boardId}',
pathParameters: {
'boardId': '$boardId',
},
);
}