v1VoicesPvcVoiceIdSamplesSampleIdWaveformGet method
Future<Response<VoiceSampleVisualWaveformResponseModel> >
v1VoicesPvcVoiceIdSamplesSampleIdWaveformGet({})
Retrieve Voice Sample Visual Waveform @param voice_id Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. @param sample_id Sample ID to be used @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<VoiceSampleVisualWaveformResponseModel>>
v1VoicesPvcVoiceIdSamplesSampleIdWaveformGet({
required String? voiceId,
required String? sampleId,
String? xiApiKey,
}) {
generatedMapping.putIfAbsent(
VoiceSampleVisualWaveformResponseModel,
() => VoiceSampleVisualWaveformResponseModel.fromJsonFactory,
);
return _v1VoicesPvcVoiceIdSamplesSampleIdWaveformGet(
voiceId: voiceId,
sampleId: sampleId,
xiApiKey: xiApiKey?.toString(),
);
}