shareWith method

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

Implementation

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