PullDownloadDto constructor

PullDownloadDto({
  1. required String stage,
  2. int? downloadedBytes,
  3. int? totalBytes,
  4. int? percent,
  5. String? digest,
})

Implementation

PullDownloadDto({
  required this.stage,
  this.downloadedBytes,
  this.totalBytes,
  this.percent,
  this.digest,
});