v1StudioProjectsGet method

Future<Response<GetProjectsResponseModel>> v1StudioProjectsGet({
  1. String? xiApiKey,
})

List Studio 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

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

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