copyWith method

BodyGetSimilarLibraryVoicesV1SimilarVoicesPost copyWith({
  1. String? audioFile,
  2. dynamic similarityThreshold,
  3. 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);
}