getMyFollowingList method

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

获取我的关注列表

Implementation

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