getMeetingsPaged function
Returns meetings according to your params
using the pagination feature
More details about possible criteria of filtering by link
Implementation
Future<PagedResult<CubeMeeting>> getMeetingsPaged({int limit = 100, int skip = 0, Map<String, dynamic>? params}) {
return GetMeetingsPagedQuery(limit, skip, params: params).perform();
}