DownloadProgress constructor

DownloadProgress({
  1. int? playerId,
  2. double? progress,
  3. bool? isComplete,
  4. String? error,
})

Implementation

DownloadProgress({
  this.playerId,
  this.progress,
  this.isComplete,
  this.error,
});