getUsersInfo method Null safety

Future<V2TimValueCallback<List<V2TimUserFullInfo>>> getUsersInfo(
  1. {required List<String> userIDList}
)

Get user profiles

Note:

To get your own information, you can pass in your own ID. 
userIDList recommends a maximum of 100 at a time, because too many packets may cause too large packets to be rejected by the background, and the maximum number of packets in the background is 1M. 

Implementation

Future<V2TimValueCallback<List<V2TimUserFullInfo>>> getUsersInfo({
  required List<String> userIDList,
}) async {
  return ImFlutterPlatform.instance.getUsersInfo(
    userIDList: userIDList,
  );
}