FolderTransferProgress constructor

FolderTransferProgress(
  1. FolderPushStatus status, {
  2. String? path,
  3. int? totalCount,
  4. int? copiedFiles,
  5. List<String>? successfulCopies,
  6. Map<String, Exception>? errorCopies,
})

Implementation

FolderTransferProgress(
  this.status, {
  this.path,
  this.totalCount,
  this.copiedFiles,
  this.successfulCopies,
  this.errorCopies,
});