SubContactDto constructor

SubContactDto({
  1. String? id,
  2. int? created,
  3. int? modified,
  4. String? author,
  5. String? responsible,
  6. String? medicalLocationId,
  7. Set<CodeStubDto> tags = const {},
  8. Set<CodeStubDto> codes = const {},
  9. int? endOfLife,
  10. String? descr,
  11. String? protocol,
  12. int? status,
  13. String? formId,
  14. String? planOfActionId,
  15. String? healthElementId,
  16. String? classificationId,
  17. List<ServiceLinkDto> services = const [],
  18. String? encryptedSelf,
})

Returns a new SubContactDto instance.

Implementation

SubContactDto({
  this.id,
  this.created,
  this.modified,
  this.author,
  this.responsible,
  this.medicalLocationId,
  this.tags = const {},
  this.codes = const {},
  this.endOfLife,
  this.descr,
  this.protocol,
  this.status,
  this.formId,
  this.planOfActionId,
  this.healthElementId,
  this.classificationId,
  this.services = const [],
  this.encryptedSelf,
});