Upload constructor

Upload({
  1. String? arn,
  2. UploadCategory? category,
  3. String? contentType,
  4. DateTime? created,
  5. String? message,
  6. String? metadata,
  7. String? name,
  8. UploadStatus? status,
  9. UploadType? type,
  10. String? url,
})

Implementation

Upload({
  this.arn,
  this.category,
  this.contentType,
  this.created,
  this.message,
  this.metadata,
  this.name,
  this.status,
  this.type,
  this.url,
});