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