AttachmentCreateDTO constructor

AttachmentCreateDTO({
  1. AdditionalCommentDTO? additionalComment,
  2. bool? public,
  3. List<String>? temporaryAttachmentIds,
})

Implementation

AttachmentCreateDTO(
    {this.additionalComment,
    bool? public,
    List<String>? temporaryAttachmentIds})
    : public = public ?? false,
      temporaryAttachmentIds = temporaryAttachmentIds ?? [];