HlsSegment constructor

HlsSegment({
  1. required String key,
  2. required String url,
  3. DownloadStatus status = DownloadStatus.IDLE,
  4. int startRange = 0,
  5. int? endRange,
})

Implementation

HlsSegment({
  required this.key,
  required this.url,
  this.status = DownloadStatus.IDLE,
  this.startRange = 0,
  this.endRange,
});