deleteCalendarItemsByIds method

Future<List<StoredDocumentIdentifier>> deleteCalendarItemsByIds(
  1. List<StoredDocumentIdentifier> entityIds
)

Implementation

Future<List<StoredDocumentIdentifier>> deleteCalendarItemsByIds(List<StoredDocumentIdentifier> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.calendarItemBasic.deleteCalendarItemsByIds(
		_sdkId,
		entityIds,
	);
}