queryCollect method

Future<NIMResult<NIMCollectInfoQueryResult>> queryCollect({
  1. NIMCollectInfo? anchor,
  2. int toTime = 0,
  3. int? type,
  4. int limit = 100,
  5. QueryDirection direction = QueryDirection.QUERY_OLD,
})

从服务端分页查询收藏列表

anchor 结束查询的最后一条收藏(不包含在查询结果中)
type 查询类型,如果为空则返回所有类型
toTime 结束时间点单位毫秒
limit 本次查询的消息条数上限(最多100条)
direction 查询方向

Implementation

Future<NIMResult<NIMCollectInfoQueryResult>> queryCollect({
  NIMCollectInfo? anchor,
  int toTime = 0,
  int? type,
  int limit = 100,
  QueryDirection direction = QueryDirection.QUERY_OLD,
}) {
  return _platform.queryCollect(
    anchor: anchor,
    toTime: toTime,
    direction: direction,
    type: type,
    limit: limit,
  );
}