matchCalendarItemsBy method

Future<List<String>> matchCalendarItemsBy(
  1. String sdkId,
  2. FilterOptions<CalendarItem> filter
)

Implementation

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