initFriendList static method
Implementation
static initFriendList() async {
final res =
await wrappedPromiseToFuture(V2TIMManagerWeb.timWeb!.getFriendList());
if (res.code == 0) {
friendList = FriendList.formatedFriendListRes(res.data);
}
}