EncryptedAccessLog constructor

EncryptedAccessLog(
  1. String id, {
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. String? author,
  6. String? responsible,
  7. String? medicalLocationId,
  8. Set<CodeStub>? tags,
  9. Set<CodeStub>? codes,
  10. int? endOfLife,
  11. int? deletionDate,
  12. String? objectId,
  13. String? accessType,
  14. String? user,
  15. String? detail,
  16. DateTime? date,
  17. String? patientId,
  18. Set<String>? secretForeignKeys,
  19. Map<String, Set<Delegation>>? cryptedForeignKeys,
  20. Map<String, Set<Delegation>>? delegations,
  21. Map<String, Set<Delegation>>? encryptionKeys,
  22. Base64String? encryptedSelf,
  23. SecurityMetadata? securityMetadata,
})

Implementation

EncryptedAccessLog(
	this.id,
	{
		String? rev,
		int? created,
		int? modified,
		String? author,
		String? responsible,
		String? medicalLocationId,
		Set<CodeStub>? tags,
		Set<CodeStub>? codes,
		int? endOfLife,
		int? deletionDate,
		String? objectId,
		String? accessType,
		String? user,
		String? detail,
		DateTime? date,
		String? patientId,
		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,
	objectId = objectId ?? null,
	accessType = accessType ?? null,
	user = user ?? null,
	detail = detail ?? null,
	date = date ?? null,
	patientId = patientId ?? null,
	secretForeignKeys = secretForeignKeys ?? {},
	cryptedForeignKeys = cryptedForeignKeys ?? {},
	delegations = delegations ?? {},
	encryptionKeys = encryptionKeys ?? {},
	encryptedSelf = encryptedSelf ?? null,
	securityMetadata = securityMetadata ?? null;