copyWith method

PodcastBulletinMode copyWith({
  1. String? type,
  2. PodcastBulletinModeData? bulletin,
})

Implementation

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