shareWith method

Future<CalendarItem> shareWith(
  1. String delegateId,
  2. CalendarItem calendarItem, {
  3. CalendarItemShareOptions? options,
})

Implementation

Future<CalendarItem> shareWith(String delegateId, CalendarItem calendarItem, { CalendarItemShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.calendarItem.tryAndRecover.shareWith(
		_sdkId,
		delegateId,
		calendarItem,
		options,
	);
}