shareWith method

Future<EncryptedPatient> shareWith(
  1. String delegateId,
  2. EncryptedPatient patient, {
  3. PatientShareOptions? options,
})

Implementation

Future<EncryptedPatient> shareWith(String delegateId, EncryptedPatient patient, { PatientShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.encrypted.shareWith(
		_sdkId,
		delegateId,
		patient,
		options,
	);
}