getLicense method

Future<License> getLicense()

Returns licensing information about the Jira instance.

Permissions required: None.

Implementation

Future<License> getLicense() async {
  return License.fromJson(await _client.send(
    'get',
    'rest/api/3/instance/license',
  ));
}