copyWithWrapped method

PodcastConversationMode copyWithWrapped({
  1. Wrapped<String>? type,
  2. Wrapped<PodcastConversationModeData>? conversation,
})

Implementation

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