getPatientResolvingMerges method 
    
    
    
  Implementation
  Future<Patient> getPatientResolvingMerges(String sdkId, String patientId, int? maxMergeDepth) async {
	final res = await _methodChannel.invokeMethod<String>(
		'PatientApi.tryAndRecover.getPatientResolvingMerges',
		{
			"sdkId": sdkId,
			"patientId": jsonEncode(patientId),
			"maxMergeDepth": jsonEncode(maxMergeDepth),
		}
	).catchError(convertPlatformException);
	if (res == null) throw AssertionError("received null result from platform method getPatientResolvingMerges");
	final parsedResJson = jsonDecode(res);
	return Patient.fromJSON(parsedResJson);
}