getFollowers method
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,
);