getMyFollowingList method

Future<V2TimValueCallback<V2TimUserInfoResult>> getMyFollowingList(
  1. {required String nextCursor}
)

获取我的关注列表

Implementation

Future<V2TimValueCallback<V2TimUserInfoResult>> getMyFollowingList({
  required String nextCursor,
}) async {
  if (kIsWeb) {
    return TencentCloudChatSdkPlatform.instance
        .getMyFollowingList(nextCursor: nextCursor);
  }

  return TIMFriendshipManager.instance
      .getMyFollowingList(nextCursor: nextCursor);
}