getSetup method

Future<String> getSetup()

Implementation

Future<String> getSetup() async {
  final response =
      await _client.get(setupUrl(space, project), headers: headers);

  if (response.isValid) {
    return response.body;
  }

  throw response;
}