shareWithMany method

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

Implementation

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