shareWith method

Future<DecryptedHealthElement> shareWith(
  1. String delegateId,
  2. DecryptedHealthElement healthElement, {
  3. HealthElementShareOptions? options,
})

Implementation

Future<DecryptedHealthElement> shareWith(String delegateId, DecryptedHealthElement healthElement, { HealthElementShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.healthElement.shareWith(
		_sdkId,
		delegateId,
		healthElement,
		options,
	);
}