copyWith method
BodyGetSimilarLibraryVoicesV1SimilarVoicesPost
copyWith({
- String? audioFile,
- dynamic similarityThreshold,
- dynamic topK,
Implementation
BodyGetSimilarLibraryVoicesV1SimilarVoicesPost copyWith(
{String? audioFile, dynamic similarityThreshold, dynamic topK}) {
return BodyGetSimilarLibraryVoicesV1SimilarVoicesPost(
audioFile: audioFile ?? this.audioFile,
similarityThreshold: similarityThreshold ?? this.similarityThreshold,
topK: topK ?? this.topK);
}