getFriendsInfo method Null safety
Get the profiles of specified friends
Parameter
userIDList Friend userID list
IDs are recommended to have a maximum of 100 at a time, because too many data packets may be rejected by the background, and the background limit data packets to a maximum of 1M.
Implementation
Future<V2TimValueCallback<List<V2TimFriendInfoResult>>> getFriendsInfo({
required List<String> userIDList,
}) async {
return ImFlutterPlatform.instance.getFriendsInfo(userIDList: userIDList);
}