DocumentTemplateDto constructor

DocumentTemplateDto({
  1. required String id,
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. String? author,
  6. String? responsible,
  7. String? medicalLocationId,
  8. Set<CodeStubDto> tags = const {},
  9. Set<CodeStubDto> codes = const {},
  10. int? endOfLife,
  11. int? deletionDate,
  12. String? attachment,
  13. DocumentTemplateDtoDocumentTypeEnum? documentType,
  14. String? mainUti,
  15. String? name,
  16. Set<String> otherUtis = const {},
  17. String? attachmentId,
  18. DocumentTemplateDtoVersionEnum? version,
  19. String? owner,
  20. String? guid,
  21. DocumentGroupDto? group,
  22. String? descr,
  23. String? disabled,
  24. CodeStubDto? specialty,
})

Returns a new DocumentTemplateDto instance.

Implementation

DocumentTemplateDto({
  required this.id,
  this.rev,
  this.created,
  this.modified,
  this.author,
  this.responsible,
  this.medicalLocationId,
  this.tags = const {},
  this.codes = const {},
  this.endOfLife,
  this.deletionDate,
  this.attachment,
  this.documentType,
  this.mainUti,
  this.name,
  this.otherUtis = const {},
  this.attachmentId,
  this.version,
  this.owner,
  this.guid,
  this.group,
  this.descr,
  this.disabled,
  this.specialty,
});