matchCalendarItemsBy method

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

Implementation

Future<List<String>> matchCalendarItemsBy(String sdkId, String groupId, FilterOptions<CalendarItem> filter) async {
	final res = await _methodChannel.invokeMethod<String>(
		'CalendarItemApi.inGroup.matchCalendarItemsBy',
		{
			"sdkId": sdkId,
			"groupId": jsonEncode(groupId),
			"filter": jsonEncode(FilterOptions.encode(filter)),
		}
	).catchError(convertPlatformException);
	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();
}