浏览 SDKs · Flutter
SDKsFlutter

获取发出的好友申请

分页查询 Flutter 当前用户发出的好友申请。

复制
final items = await OpenIM.iMManager.friendshipManager
    .getFriendApplicationListAsApplicant(
  req: GetFriendApplicationListAsApplicantReq(offset: 0, count: 20),
);

offset0 开始,count 是页大小。Future 返回当前页 List<FriendApplicationInfo>;按 fromUserID:toUserID 合并。查询不会触发申请事件。