copyWith method

PodcastURLSource copyWith({
  1. String? type,
  2. String? url,
})

Implementation

PodcastURLSource copyWith({String? type, String? url}) {
  return PodcastURLSource(type: type ?? this.type, url: url ?? this.url);
}