getProjectRoleActorsForRole method
Returns the default actors for the project role.
Permissions required: Administer Jira global permission.
Implementation
Future<ProjectRole> getProjectRoleActorsForRole(int id) async {
return ProjectRole.fromJson(await _client.send(
'get',
'rest/api/3/role/{id}/actors',
pathParameters: {
'id': '$id',
},
));
}