getFriendByIds static method

Future<NIMResult<List<NIMFriend>>> getFriendByIds(
  1. List<String> accountIds
)

根据AccountId获取好友信息

Implementation

static Future<NIMResult<List<NIMFriend>>> getFriendByIds(
    List<String> accountIds) {
  return NimCore.instance.friendService.getFriendByIds(accountIds);
}