copyWith method

ChapterContentParagraphTtsNodeInputModel copyWith({
  1. String? type,
  2. String? text,
  3. String? voiceId,
})

Implementation

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