PodcastTextSource constructor

const PodcastTextSource({
  1. required String type,
  2. required String text,
})

Implementation

const PodcastTextSource({
  required this.type,
  required this.text,
});