copyWithWrapped method
PodcastConversationMode
copyWithWrapped({
- Wrapped<
String> ? type, - 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));
}