undeleteCalendarItemById method

Future<DecryptedCalendarItem> undeleteCalendarItemById(
  1. String id,
  2. String rev
)

Implementation

Future<DecryptedCalendarItem> undeleteCalendarItemById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.calendarItem.undeleteCalendarItemById(
		_sdkId,
		id,
		rev,
	);
}