appBskyGraphGetFollows function
Enumerates accounts which a specified account (actor) follows.
Implementation
Future<XRPCResponse<GraphGetFollowsOutput>> appBskyGraphGetFollows({
required String actor,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyGraphGetFollows,
headers: $headers,
parameters: {
...?$unknown,
'actor': actor,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const GraphGetFollowsOutputConverter().fromJson,
);