shareWith method

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

Implementation

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