v1VoiceGenerationGenerateVoicePost method
Future<Response>
v1VoiceGenerationGenerateVoicePost({
- String? xiApiKey,
- required BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePost? body,
Generate A Random Voice @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> v1VoiceGenerationGenerateVoicePost({
String? xiApiKey,
required BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePost? body,
}) {
return _v1VoiceGenerationGenerateVoicePost(
xiApiKey: xiApiKey?.toString(),
body: body,
);
}