v1StudioProjectsPost method

Future<Response<AddProjectResponseModel>> v1StudioProjectsPost({
  1. String? xiApiKey,
  2. required BodyCreateStudioProjectV1StudioProjectsPost body,
})

Create Studio Project @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<AddProjectResponseModel>> v1StudioProjectsPost({
  String? xiApiKey,
  required BodyCreateStudioProjectV1StudioProjectsPost body,
}) {
  generatedMapping.putIfAbsent(
    AddProjectResponseModel,
    () => AddProjectResponseModel.fromJsonFactory,
  );

  return _v1StudioProjectsPost(xiApiKey: xiApiKey?.toString(), body: body);
}