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