shareWith method

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

Implementation

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