DecryptedForm constructor

DecryptedForm(
  1. String id, {
  2. int? version,
  3. String? rev,
  4. int? created,
  5. int? modified,
  6. String? author,
  7. String? responsible,
  8. String? medicalLocationId,
  9. Set<CodeStub>? tags,
  10. Set<CodeStub>? codes,
  11. int? endOfLife,
  12. int? deletionDate,
  13. int? openingDate,
  14. String? status,
  15. String? logicalUuid,
  16. String? descr,
  17. String? uniqueId,
  18. String? formTemplateId,
  19. String? contactId,
  20. String? healthElementId,
  21. String? planOfActionId,
  22. String? parent,
  23. Set<String>? secretForeignKeys,
  24. Map<String, Set<Delegation>>? cryptedForeignKeys,
  25. Map<String, Set<Delegation>>? delegations,
  26. Map<String, Set<Delegation>>? encryptionKeys,
  27. Base64String? encryptedSelf,
  28. SecurityMetadata? securityMetadata,
})

Implementation

DecryptedForm(
	this.id,
	{
		int? version,
		String? rev,
		int? created,
		int? modified,
		String? author,
		String? responsible,
		String? medicalLocationId,
		Set<CodeStub>? tags,
		Set<CodeStub>? codes,
		int? endOfLife,
		int? deletionDate,
		int? openingDate,
		String? status,
		String? logicalUuid,
		String? descr,
		String? uniqueId,
		String? formTemplateId,
		String? contactId,
		String? healthElementId,
		String? planOfActionId,
		String? parent,
		Set<String>? secretForeignKeys,
		Map<String, Set<Delegation>>? cryptedForeignKeys,
		Map<String, Set<Delegation>>? delegations,
		Map<String, Set<Delegation>>? encryptionKeys,
		Base64String? encryptedSelf,
		SecurityMetadata? securityMetadata
	}) : rev = rev ?? null,
	created = created ?? null,
	modified = modified ?? null,
	author = author ?? null,
	responsible = responsible ?? null,
	medicalLocationId = medicalLocationId ?? null,
	tags = tags ?? {},
	codes = codes ?? {},
	endOfLife = endOfLife ?? null,
	deletionDate = deletionDate ?? null,
	openingDate = openingDate ?? null,
	status = status ?? null,
	logicalUuid = logicalUuid ?? null,
	descr = descr ?? null,
	uniqueId = uniqueId ?? null,
	formTemplateId = formTemplateId ?? null,
	contactId = contactId ?? null,
	healthElementId = healthElementId ?? null,
	planOfActionId = planOfActionId ?? null,
	parent = parent ?? null,
	secretForeignKeys = secretForeignKeys ?? {},
	cryptedForeignKeys = cryptedForeignKeys ?? {},
	delegations = delegations ?? {},
	encryptionKeys = encryptionKeys ?? {},
	encryptedSelf = encryptedSelf ?? null,
	securityMetadata = securityMetadata ?? null,
	_version = version ?? null;