fetchUserInfoByIds method
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,
);
});
}