getApplicationRole method

Future<ApplicationRole> getApplicationRole(
  1. String key
)

Returns an application role.

Permissions required: Administer Jira global permission.

Implementation

Future<ApplicationRole> getApplicationRole(String key) async {
  return ApplicationRole.fromJson(await _client.send(
    'get',
    'rest/api/3/applicationrole/{key}',
    pathParameters: {
      'key': key,
    },
  ));
}