copyWithWrapped method
PodcastBulletinMode
copyWithWrapped({
- Wrapped<
String> ? type, - 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));
}