shareWith method

Future<GroupScoped<Patient>> shareWith(
  1. EntityReferenceInGroup delegate,
  2. GroupScoped<Patient> patient, {
  3. PatientShareOptions? options,
})

Implementation

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