replaceFull method

void replaceFull(
  1. DownloadServiceItem oldItem
)

Implementation

void replaceFull(DownloadServiceItem oldItem) {
  downloadCount = oldItem.downloadCount;
  filePath = oldItem.filePath;
  loadState = oldItem.loadState;
  h5Path = oldItem.h5Path;
  zipUrl = LocalServerConfiguration.downloadUrl(oldItem.zipUrl);
  downloadCount = oldItem.downloadCount;
  filePath = oldItem.filePath;
  isCompress = oldItem.isCompress;
  version = oldItem.version;
}