copyWith method
Implementation
PodcastConversationModeData copyWith(
{String? hostVoiceId, String? guestVoiceId}) {
return PodcastConversationModeData(
hostVoiceId: hostVoiceId ?? this.hostVoiceId,
guestVoiceId: guestVoiceId ?? this.guestVoiceId);
}