getArchivedConversations method
Implementation
Future<Result<List<Meeting>>> getArchivedConversations({
required int skip,
int limit = 10,
}) async {
return await _sdk.getArchivedConversations(
limit: limit,
skip: skip,
);
}
Future<Result<List<Meeting>>> getArchivedConversations({
required int skip,
int limit = 10,
}) async {
return await _sdk.getArchivedConversations(
limit: limit,
skip: skip,
);
}