shareWithMany method

Future<HealthElement> shareWithMany(
  1. HealthElement healthElement,
  2. Map<String, HealthElementShareOptions> delegates
)

Implementation

Future<HealthElement> shareWithMany(HealthElement healthElement, Map<String, HealthElementShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.healthElement.tryAndRecover.shareWithMany(
		_sdkId,
		healthElement,
		delegates,
	);
}