v1ProjectsGet method

  1. @deprecated
Future<Response<GetProjectsResponseModel>> v1ProjectsGet({
  1. String? xiApiKey,
})

Get Projects @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

@deprecated
Future<chopper.Response<GetProjectsResponseModel>> v1ProjectsGet({
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    GetProjectsResponseModel,
    () => GetProjectsResponseModel.fromJsonFactory,
  );

  return _v1ProjectsGet(xiApiKey: xiApiKey?.toString());
}