getMyFollowersList method

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

获取关注我的列表

Implementation

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