CustomFileWrapper constructor

CustomFileWrapper({
  1. required CustomFile file,
  2. required UploadStatus status,
  3. double? uploadProgress,
  4. String? errorMessage,
})

Implementation

CustomFileWrapper({
  required this.file,
  required this.status,
  this.uploadProgress,
  this.errorMessage,
});