ListItemDownload constructor

const ListItemDownload({
  1. Key? key,
  2. required UploadStatus status,
  3. required String fileName,
  4. required dynamic onDelete(
    1. String
    ),
  5. double? uploadProgress,
  6. String? errorMessage,
})

Implementation

const ListItemDownload({
  super.key,
  required this.status,
  required this.fileName,
  required this.onDelete,
  this.uploadProgress,
  this.errorMessage,
});