copyWith method
Implementation
PodcastBulletinMode copyWith(
{String? type, PodcastBulletinModeData? bulletin}) {
return PodcastBulletinMode(
type: type ?? this.type, bulletin: bulletin ?? this.bulletin);
}
PodcastBulletinMode copyWith(
{String? type, PodcastBulletinModeData? bulletin}) {
return PodcastBulletinMode(
type: type ?? this.type, bulletin: bulletin ?? this.bulletin);
}