copyWith method

PodcastTextSource copyWith({
  1. String? type,
  2. String? text,
})

Implementation

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