copyWithWrapped method

PodcastBulletinMode copyWithWrapped({
  1. Wrapped<String>? type,
  2. Wrapped<PodcastBulletinModeData>? bulletin,
})

Implementation

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