copyWithWrapped method

TTSConversationalConfigOverrideConfig copyWithWrapped({
  1. Wrapped<bool?>? voiceId,
})

Implementation

TTSConversationalConfigOverrideConfig copyWithWrapped(
    {Wrapped<bool?>? voiceId}) {
  return TTSConversationalConfigOverrideConfig(
      voiceId: (voiceId != null ? voiceId.value : this.voiceId));
}