SubtitleController constructor

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

Implementation

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