copyWith method

PodcastBulletinModeData copyWith({
  1. String? hostVoiceId,
})

Implementation

PodcastBulletinModeData copyWith({String? hostVoiceId}) {
  return PodcastBulletinModeData(
      hostVoiceId: hostVoiceId ?? this.hostVoiceId);
}