getMutualFollowersList method

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

获取我的互关列表

Implementation

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