setBoardProperty method

Future<void> setBoardProperty({
  1. required String boardId,
  2. required String propertyKey,
})

Sets the value of the specified board's property.

You can use this resource to store a custom data against the board identified by the id. The user who stores the data is required to have permissions to modify the board.

Implementation

Future<void> setBoardProperty(
    {required String boardId, required String propertyKey}) async {
  await _client.send(
    'put',
    'rest/agile/1.0/board/{boardId}/properties/{propertyKey}',
    pathParameters: {
      'boardId': boardId,
      'propertyKey': propertyKey,
    },
  );
}