getMeetings function

Future<List<CubeMeeting>> getMeetings([
  1. Map<String, dynamic>? params
])

Returns meeting according to your params More details about possible criteria of filtering by link Note: function can return a maximum of 100 items, use getMeetingsPaged for getting more using the pagination feature

Implementation

Future<List<CubeMeeting>> getMeetings([Map<String, dynamic>? params]) {
  return GetMeetingsQuery(params).perform();
}