copyWith method

PodcastConversationMode copyWith({
  1. String? type,
  2. PodcastConversationModeData? conversation,
})

Implementation

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