v1DubbingResourceDubbingIdGet method

Future<Response<DubbingResource>> v1DubbingResourceDubbingIdGet({
  1. required String? dubbingId,
  2. String? xiApiKey,
})

Get The Dubbing Resource For An Id. @param dubbing_id ID of the dubbing 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<DubbingResource>> v1DubbingResourceDubbingIdGet({
  required String? dubbingId,
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    DubbingResource,
    () => DubbingResource.fromJsonFactory,
  );

  return _v1DubbingResourceDubbingIdGet(
    dubbingId: dubbingId,
    xiApiKey: xiApiKey?.toString(),
  );
}