tryDecrypt method

Future<List<HealthElement>> tryDecrypt(
  1. List<EncryptedHealthElement> healthElements
)

Implementation

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