linkToPatient method

Future<CalendarItem> linkToPatient(
  1. CalendarItem calendarItem,
  2. Patient patient,
  3. Set<String> shareLinkWithDelegates
)

Implementation

Future<CalendarItem> linkToPatient(CalendarItem calendarItem, Patient patient, Set<String> shareLinkWithDelegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.calendarItem.tryAndRecover.linkToPatient(
		_sdkId,
		calendarItem,
		patient,
		shareLinkWithDelegates,
	);
}