getBoardProperty method

Future getBoardProperty({
  1. required String boardId,
  2. required String propertyKey,
})

Returns the value of the property with a given key from the board identified by the provided id. The user who retrieves the property is required to have permissions to view the board.

Implementation

Future<dynamic> getBoardProperty(
    {required String boardId, required String propertyKey}) async {
  return await _client.send(
    'get',
    'rest/agile/1.0/board/{boardId}/properties/{propertyKey}',
    pathParameters: {
      'boardId': boardId,
      'propertyKey': propertyKey,
    },
  );
}