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