shareWith method

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

Implementation

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