shareWithMany method

Future<DecryptedPatient> shareWithMany(
  1. DecryptedPatient patient,
  2. Map<String, PatientShareOptions> delegates
)

Implementation

Future<DecryptedPatient> shareWithMany(DecryptedPatient patient, Map<String, PatientShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.shareWithMany(
		_sdkId,
		patient,
		delegates,
	);
}