copyWithWrapped method

PodcastBulletinModeData copyWithWrapped({
  1. Wrapped<String>? hostVoiceId,
})

Implementation

PodcastBulletinModeData copyWithWrapped({Wrapped<String>? hostVoiceId}) {
  return PodcastBulletinModeData(
      hostVoiceId:
          (hostVoiceId != null ? hostVoiceId.value : this.hostVoiceId));
}