getFollows method

Future<Tuple2> getFollows(
  1. String actor, {
  2. int? limit,
  3. String? cursor,
})

Implementation

Future<Tuple2> getFollows(String actor, {int? limit, String? cursor}) async {
  http.Response res = await api.get("app.bsky.graph.getFollows",
      params: {"actor": actor, "limit": limit, "cursor": cursor},
      headers: {"Authorization": "Bearer ${api.session.accessJwt}"});
  return Tuple2<int, Map<String, dynamic>>(
      res.statusCode, json.decode(res.body));
}