copyWithWrapped method
Implementation
ChapterContentParagraphTtsNodeInputModel copyWithWrapped(
{Wrapped<String>? type,
Wrapped<String>? text,
Wrapped<String>? voiceId}) {
return ChapterContentParagraphTtsNodeInputModel(
type: (type != null ? type.value : this.type),
text: (text != null ? text.value : this.text),
voiceId: (voiceId != null ? voiceId.value : this.voiceId));
}