getPatientResolvingMerges method

Future<GroupScoped<EncryptedPatient>> getPatientResolvingMerges(
  1. String groupId,
  2. String patientId,
  3. int? maxMergeDepth
)

Implementation

Future<GroupScoped<EncryptedPatient>> getPatientResolvingMerges(String groupId, String patientId, int? maxMergeDepth) async {
	return await CardinalSdkPlatformInterface.instance.apis.patientBasic.inGroup.getPatientResolvingMerges(
		_sdkId,
		groupId,
		patientId,
		maxMergeDepth,
	);
}