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,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetKnownFollowers(
actor: actor,
limit: limit,
cursor: cursor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);