getServerInfo method

Future<ServerInformation> getServerInfo()

Returns information about the Jira instance.

This operation can be accessed anonymously.

Permissions required: None.

Implementation

Future<ServerInformation> getServerInfo() async {
  return ServerInformation.fromJson(await _client.send(
    'get',
    'rest/api/3/serverInfo',
  ));
}