deleteCalendarItems method
Implementation
Future<List<DocIdentifier>> deleteCalendarItems(String sdkId, List<CalendarItem> calendarItems) async {
final res = await _methodChannel.invokeMethod<String>(
'CalendarItemApi.deleteCalendarItems',
{
"sdkId": sdkId,
"calendarItems": jsonEncode(calendarItems.map((x0) => CalendarItem.encode(x0)).toList()),
}
);
if (res == null) throw AssertionError("received null result from platform method deleteCalendarItems");
final parsedResJson = jsonDecode(res);
return (parsedResJson as List<dynamic>).map((x1) => DocIdentifier.fromJSON(x1) ).toList();
}