tryDecrypt method

Future<Patient> tryDecrypt(
  1. EncryptedPatient patient
)

Implementation

Future<Patient> tryDecrypt(EncryptedPatient patient) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.tryDecrypt(
		_sdkId,
		patient,
	);
}