copyWithWrapped method
Implementation
BodyGetSimilarLibraryVoicesV1SimilarVoicesPost copyWithWrapped(
{Wrapped<String?>? audioFile,
Wrapped<dynamic>? similarityThreshold,
Wrapped<dynamic>? topK}) {
return BodyGetSimilarLibraryVoicesV1SimilarVoicesPost(
audioFile: (audioFile != null ? audioFile.value : this.audioFile),
similarityThreshold: (similarityThreshold != null
? similarityThreshold.value
: this.similarityThreshold),
topK: (topK != null ? topK.value : this.topK));
}