getProperty method

Future<void> getProperty({
  1. required String sprintId,
  2. required String propertyKey,
})

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

Implementation

Future<void> getProperty(
    {required String sprintId, required String propertyKey}) async {
  await _client.send(
    'get',
    'rest/agile/1.0/sprint/{sprintId}/properties/{propertyKey}',
    pathParameters: {
      'sprintId': sprintId,
      'propertyKey': propertyKey,
    },
  );
}