getIssueType method

Future<IssueTypeDetails> getIssueType(
  1. String id
)

Returns an issue type.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission in a project the issue type is associated with or Administer Jira global permission.

Implementation

Future<IssueTypeDetails> getIssueType(String id) async {
  return IssueTypeDetails.fromJson(await _client.send(
    'get',
    'rest/api/3/issuetype/{id}',
    pathParameters: {
      'id': id,
    },
  ));
}