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