copyWith method
BodySoundGenerationV1SoundGenerationPost
copyWith({
- String? text,
- dynamic durationSeconds,
- 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);
}