HlsCacheResult constructor

HlsCacheResult({
  1. required String playlistPath,
  2. required bool isFullyCached,
  3. int? totalSegments,
  4. int? cachedSegments,
})

Implementation

HlsCacheResult({
  required this.playlistPath,
  required this.isFullyCached,
  this.totalSegments,
  this.cachedSegments,
});