getProjectPropertyKeys method
Returns all project property keys for the project.
This operation can be accessed anonymously.
Permissions required: Browse Projects project permission for the project.
Implementation
Future<PropertyKeys> getProjectPropertyKeys(String projectIdOrKey) async {
return PropertyKeys.fromJson(await _client.send(
'get',
'rest/api/3/project/{projectIdOrKey}/properties',
pathParameters: {
'projectIdOrKey': projectIdOrKey,
},
));
}