HlsVariant constructor

HlsVariant({
  1. required String url,
  2. required int bandwidth,
  3. String? resolution,
  4. String? codecs,
})

Implementation

HlsVariant({
  required this.url,
  required this.bandwidth,
  this.resolution,
  this.codecs,
});