getBoard method

Future<Map<String, dynamic>> getBoard(
  1. int boardId
)

Returns the board for the given board ID. This board will only be returned if the user has permission to view it. Admins without the view permission will see the board as a private one, so will see only a subset of the board's data (board location for instance).

Implementation

Future<Map<String, dynamic>> getBoard(int boardId) async {
  return await _client.send(
    'get',
    'rest/agile/1.0/board/{boardId}',
    pathParameters: {
      'boardId': '$boardId',
    },
  ) as Map<String, Object?>;
}