getFollows method
Enumerates accounts which a specified account (actor) follows.
Implementation
Future<XRPCResponse<GraphGetFollowsOutput>> getFollows({
required String actor,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetFollows(
actor: actor,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);