DecryptedMessage constructor

DecryptedMessage(
  1. String id, {
  2. int? status,
  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. String? fromAddress,
  14. String? fromHealthcarePartyId,
  15. String? formId,
  16. String? recipientsType,
  17. Set<String>? recipients,
  18. Set<String>? toAddresses,
  19. int? received,
  20. int? sent,
  21. Map<String, String>? metas,
  22. Map<String, MessageReadStatus>? readStatus,
  23. List<MessageAttachment>? messageAttachments,
  24. String? transportGuid,
  25. String? remark,
  26. String? conversationGuid,
  27. String? subject,
  28. Set<String>? invoiceIds,
  29. String? parentId,
  30. String? externalRef,
  31. Set<String>? unassignedResults,
  32. Map<String, String>? assignedResults,
  33. Map<String, String>? senderReferences,
  34. Set<String>? secretForeignKeys,
  35. Map<String, Set<Delegation>>? cryptedForeignKeys,
  36. Map<String, Set<Delegation>>? delegations,
  37. Map<String, Set<Delegation>>? encryptionKeys,
  38. Base64String? encryptedSelf,
  39. SecurityMetadata? securityMetadata,
})

Implementation

DecryptedMessage(
	this.id,
	{
		int? status,
		String? rev,
		int? created,
		int? modified,
		String? author,
		String? responsible,
		String? medicalLocationId,
		Set<CodeStub>? tags,
		Set<CodeStub>? codes,
		int? endOfLife,
		int? deletionDate,
		String? fromAddress,
		String? fromHealthcarePartyId,
		String? formId,
		String? recipientsType,
		Set<String>? recipients,
		Set<String>? toAddresses,
		int? received,
		int? sent,
		Map<String, String>? metas,
		Map<String, MessageReadStatus>? readStatus,
		List<MessageAttachment>? messageAttachments,
		String? transportGuid,
		String? remark,
		String? conversationGuid,
		String? subject,
		Set<String>? invoiceIds,
		String? parentId,
		String? externalRef,
		Set<String>? unassignedResults,
		Map<String, String>? assignedResults,
		Map<String, String>? senderReferences,
		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,
	fromAddress = fromAddress ?? null,
	fromHealthcarePartyId = fromHealthcarePartyId ?? null,
	formId = formId ?? null,
	recipientsType = recipientsType ?? null,
	recipients = recipients ?? {},
	toAddresses = toAddresses ?? {},
	received = received ?? null,
	sent = sent ?? null,
	metas = metas ?? {},
	readStatus = readStatus ?? {},
	messageAttachments = messageAttachments ?? [],
	transportGuid = transportGuid ?? null,
	remark = remark ?? null,
	conversationGuid = conversationGuid ?? null,
	subject = subject ?? null,
	invoiceIds = invoiceIds ?? {},
	parentId = parentId ?? null,
	externalRef = externalRef ?? null,
	unassignedResults = unassignedResults ?? {},
	assignedResults = assignedResults ?? {},
	senderReferences = senderReferences ?? {},
	secretForeignKeys = secretForeignKeys ?? {},
	cryptedForeignKeys = cryptedForeignKeys ?? {},
	delegations = delegations ?? {},
	encryptionKeys = encryptionKeys ?? {},
	encryptedSelf = encryptedSelf ?? null,
	securityMetadata = securityMetadata ?? null,
	_status = status ?? null;