Attachment constructor

Attachment({
  1. String? name,
  2. String? size,
  3. String? type,
  4. String? uploadedAt,
  5. String? url,
  6. String? path,
})

Implementation

Attachment({
  this.name,
  this.size,
  this.type,
  this.uploadedAt,
  this.url,
  this.path,
});