FileUploadProgress constructor
const
FileUploadProgress({
- required String fileId,
- required double progress,
- required FileUploadStatus status,
- String? error,
- FileAttachment? attachment,
Creates file upload progress.
Implementation
const FileUploadProgress({
required this.fileId,
required this.progress,
required this.status,
this.error,
this.attachment,
});