withEncryptionMetadata method

Future<GroupScoped<DecryptedPatient>> withEncryptionMetadata(
  1. String entityGroupId,
  2. DecryptedPatient? base, {
  3. User? user,
  4. Map<EntityReferenceInGroup, AccessLevel> delegates = const {},
})

Implementation

Future<GroupScoped<DecryptedPatient>> withEncryptionMetadata(String entityGroupId, DecryptedPatient? base, { User? user, Map<EntityReferenceInGroup, AccessLevel> delegates = const {} }) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.inGroup.withEncryptionMetadata(
		_sdkId,
		entityGroupId,
		base,
		user,
		delegates,
	);
}