FormTemplateDto constructor

FormTemplateDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. FormLayout? layout,
  5. FormTemplateLayout? templateLayout,
  6. String? name,
  7. String? guid,
  8. DocumentGroupDto? group,
  9. String? descr,
  10. String? disabled,
  11. CodeStubDto? specialty,
  12. String? author,
  13. String? formInstancePreferredLocation,
  14. String? keyboardShortcut,
  15. String? shortReport,
  16. String? mediumReport,
  17. String? longReport,
  18. Set<String> reports = const {},
  19. Set<CodeStubDto> tags = const {},
  20. String? layoutAttachmentId,
})

Returns a new FormTemplateDto instance.

Implementation

FormTemplateDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.layout,
  this.templateLayout,
  this.name,
  this.guid,
  this.group,
  this.descr,
  this.disabled,
  this.specialty,
  this.author,
  this.formInstancePreferredLocation,
  this.keyboardShortcut,
  this.shortReport,
  this.mediumReport,
  this.longReport,
  this.reports = const {},
  this.tags = const {},
  this.layoutAttachmentId,
});