getHealthElement method

Future<GroupScoped<DecryptedHealthElement>?> getHealthElement(
  1. String groupId,
  2. String entityId
)

Implementation

Future<GroupScoped<DecryptedHealthElement>?> getHealthElement(String groupId, String entityId) async {
	return await CardinalSdkPlatformInterface.instance.apis.healthElement.inGroup.getHealthElement(
		_sdkId,
		groupId,
		entityId,
	);
}