copyWith method

BodySoundGenerationV1SoundGenerationPost copyWith({
  1. String? text,
  2. dynamic durationSeconds,
  3. dynamic promptInfluence,
})

Implementation

BodySoundGenerationV1SoundGenerationPost copyWith(
    {String? text, dynamic durationSeconds, dynamic promptInfluence}) {
  return BodySoundGenerationV1SoundGenerationPost(
      text: text ?? this.text,
      durationSeconds: durationSeconds ?? this.durationSeconds,
      promptInfluence: promptInfluence ?? this.promptInfluence);
}