getIssueLink method
Returns an issue link.
This operation can be accessed anonymously.
Permissions required:
- Browse project project permission for all the projects containing the linked issues.
- If issue-level security is configured, permission to view both of the issues.
Implementation
Future<IssueLink> getIssueLink(String linkId) async {
return IssueLink.fromJson(await _client.send(
'get',
'rest/api/3/issueLink/{linkId}',
pathParameters: {
'linkId': linkId,
},
));
}