setProperty method
Sets the value of the specified sprint's property.
You can use this resource to store a custom data against the sprint identified by the id. The user who stores the data is required to have permissions to modify the sprint.
Implementation
Future<void> setProperty(
{required String sprintId, required String propertyKey}) async {
await _client.send(
'put',
'rest/agile/1.0/sprint/{sprintId}/properties/{propertyKey}',
pathParameters: {
'sprintId': sprintId,
'propertyKey': propertyKey,
},
);
}