AttachmentDTO constructor

AttachmentDTO({
  1. AttachmentLinkDTO? links,
  2. UserDTO? author,
  3. DateDTO? created,
  4. String? filename,
  5. String? mimeType,
  6. int? size,
})

Implementation

AttachmentDTO(
    {this.links,
    this.author,
    this.created,
    this.filename,
    this.mimeType,
    this.size});