getMutualFollowersList method

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

获取我的互关列表

Implementation

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

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