HlsDownloadException constructor

const HlsDownloadException({
  1. required String code,
  2. required String message,
  3. Object? cause,
  4. StackTrace? stackTrace,
})

Implementation

const HlsDownloadException({
  required this.code,
  required this.message,
  this.cause,
  this.stackTrace,
});