fetchUserInfoByIds method

Future<Map<String, UserInfo>> fetchUserInfoByIds(
  1. List<String> userIds, {
  2. int expireTime = 0,
})

Implementation

Future<Map<String, UserInfo>> fetchUserInfoByIds(
  List<String> userIds, {
  int expireTime = 0,
}) async {
  return checkResult(ChatSDKEvent.fetchUserInfoByIds, () {
    return Client.getInstance.userInfoManager.fetchUserInfoById(
      userIds,
      expireTime: expireTime,
    );
  });
}