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