DownloadCallback constructor

DownloadCallback({
  1. OnDownloadStart? onDownloadStart,
  2. OnDownloadProgress? onDownloadProgress,
  3. OnDownloadPause? onDownloadPause,
  4. OnDownloadCancel? onDownloadCancel,
  5. OnDownloadFail? onDownloadFail,
  6. OnDownloadFinish? onDownloadFinish,
  7. OnInstallStart? onInstallStart,
  8. OnInstallFail? onInstallFail,
  9. OnInstallSuccess? onInstallSuccess,
})

Implementation

DownloadCallback({
  this.onDownloadStart,
  this.onDownloadProgress,
  this.onDownloadPause,
  this.onDownloadCancel,
  this.onDownloadFail,
  this.onDownloadFinish,
  this.onInstallStart,
  this.onInstallFail,
  this.onInstallSuccess,
});