tryDecrypt method

Future<HealthElement> tryDecrypt(
  1. EncryptedHealthElement healthElement
)

Implementation

Future<HealthElement> tryDecrypt(EncryptedHealthElement healthElement) async {
	return await CardinalSdkPlatformInterface.instance.apis.healthElement.tryDecrypt(
		_sdkId,
		healthElement,
	);
}