shareWith method

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

Implementation

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