getFollowers method

Future<XRPCResponse<GraphGetFollowersOutput>> getFollowers({
  1. required String actor,
  2. int? limit,
  3. String? cursor,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Enumerates accounts which follow a specified account (actor).

Implementation

Future<XRPCResponse<GraphGetFollowersOutput>> getFollowers({
  required String actor,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyGraphGetFollowers(
  actor: actor,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);