copyWithWrapped method

PodcastURLSource copyWithWrapped({
  1. Wrapped<String>? type,
  2. Wrapped<String>? url,
})

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));
}