copyWith method
Implementation
PodcastConversationMode copyWith(
{String? type, PodcastConversationModeData? conversation}) {
return PodcastConversationMode(
type: type ?? this.type,
conversation: conversation ?? this.conversation);
}