Attachment constructor

Attachment(
  1. int id,
  2. String userId,
  3. DateTime time,
  4. String fileName,
  5. String contentType,
  6. bool? deleted,
  7. bool? private,
  8. bool? checkedOut,
  9. String? holdingId,
)

Implementation

Attachment(this.id, this.userId, this.time, this.fileName, this.contentType,
    this.deleted, this.private, this.checkedOut, this.holdingId);