copyWith method
Implementation
PodcastURLSource copyWith({String? type, String? url}) {
return PodcastURLSource(type: type ?? this.type, url: url ?? this.url);
}
PodcastURLSource copyWith({String? type, String? url}) {
return PodcastURLSource(type: type ?? this.type, url: url ?? this.url);
}