HlsVideoStreamInfo constructor

HlsVideoStreamInfo(
  1. VideoId videoId,
  2. int tag,
  3. Uri url,
  4. StreamContainer container,
  5. FileSize size,
  6. Bitrate bitrate,
  7. String videoCodec,
  8. String qualityLabel,
  9. VideoQuality videoQuality,
  10. VideoResolution videoResolution,
  11. Framerate framerate,
  12. MediaType codec,
  13. int? audioItag,
)

Initializes an instance of HlsVideoStreamInfo

Implementation

HlsVideoStreamInfo(
    this.videoId,
    this.tag,
    this.url,
    this.container,
    this.size,
    this.bitrate,
    this.videoCodec,
    this.qualityLabel,
    this.videoQuality,
    this.videoResolution,
    this.framerate,
    this.codec,
    this.audioItag);