copyWithWrapped method

PodcastTextSource copyWithWrapped({
  1. Wrapped<String>? type,
  2. Wrapped<String>? text,
})

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