copyWithWrapped method
Implementation
PodcastURLSource copyWithWrapped(
{Wrapped<String>? type, Wrapped<String>? url}) {
return PodcastURLSource(
type: (type != null ? type.value : this.type),
url: (url != null ? url.value : this.url));
}