getInfo method

Future<SoftwareInfoDTO> getInfo()

This method retrieves information about the Jira Service Management instance such as software version, builds, and related links.

Permissions required: None, the user does not need to be logged in.

Implementation

Future<SoftwareInfoDTO> getInfo() async {
  return SoftwareInfoDTO.fromJson(await _client.send(
    'get',
    'rest/servicedeskapi/info',
  ));
}