UrlUploadStatusEntity constructor

const UrlUploadStatusEntity({
  1. required UrlUploadStatusValue status,
  2. String errorMessage = '',
  3. FileInfoEntity? fileInfo,
  4. ProgressEntity? progress,
})

Implementation

const UrlUploadStatusEntity({
  required this.status,
  this.errorMessage = '',
  this.fileInfo,
  this.progress,
});