getMyFollowersList method

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

获取关注我的列表

Implementation

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

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