getBoardProperty method
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,
},
);
}