copyWith method
Implementation
ChapterContentParagraphTtsNodeInputModel copyWith(
{String? type, String? text, String? voiceId}) {
return ChapterContentParagraphTtsNodeInputModel(
type: type ?? this.type,
text: text ?? this.text,
voiceId: voiceId ?? this.voiceId);
}