shareWithMany method
Implementation
Future<CalendarItem> shareWithMany(String sdkId, CalendarItem calendarItem, Map<String, CalendarItemShareOptions> delegates) async {
final res = await _methodChannel.invokeMethod<String>(
'CalendarItemApi.tryAndRecover.shareWithMany',
{
"sdkId": sdkId,
"calendarItem": jsonEncode(CalendarItem.encode(calendarItem)),
"delegates": jsonEncode(delegates.map((k0, v0) => MapEntry(k0, CalendarItemShareOptions.encode(v0)))),
}
);
if (res == null) throw AssertionError("received null result from platform method shareWithMany");
final parsedResJson = jsonDecode(res);
return CalendarItem.fromJSON(parsedResJson);
}