SDKsFlutter
获取发出的好友申请
分页查询 Flutter 当前用户发出的好友申请。
final items = await OpenIM.iMManager.friendshipManager
.getFriendApplicationListAsApplicant(
req: GetFriendApplicationListAsApplicantReq(offset: 0, count: 20),
);offset 从 0 开始,count 是页大小。Future 返回当前页 List<FriendApplicationInfo>;按 fromUserID:toUserID 合并。查询不会触发申请事件。
这个页面有帮助吗?