copyWithWrapped method

PodcastConversationModeData copyWithWrapped({
  1. Wrapped<String>? hostVoiceId,
  2. Wrapped<String>? guestVoiceId,
})

Implementation

PodcastConversationModeData copyWithWrapped(
    {Wrapped<String>? hostVoiceId, Wrapped<String>? guestVoiceId}) {
  return PodcastConversationModeData(
      hostVoiceId:
          (hostVoiceId != null ? hostVoiceId.value : this.hostVoiceId),
      guestVoiceId:
          (guestVoiceId != null ? guestVoiceId.value : this.guestVoiceId));
}