getKnownFollowers method
Enumerates accounts which follow a specified account (actor) and are followed by the viewer.
Implementation
Future<XRPCResponse<GraphGetKnownFollowersOutput>> getKnownFollowers({
required String actor,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetKnownFollowers(
actor: actor,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);