SubtitleController constructor

SubtitleController({
  1. String? subtitleUrl,
  2. String? subtitlesContent,
  3. bool showSubtitles = true,
  4. SubtitleDecoder? subtitleDecoder,
  5. SubtitleType subtitleType = SubtitleType.webvtt,
})

Implementation

SubtitleController({
  this.subtitleUrl,
  this.subtitlesContent,
  this.showSubtitles = true,
  this.subtitleDecoder,
  this.subtitleType = SubtitleType.webvtt,
});