getSuggestedFollowsByActor method
Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account.
Implementation
Future<XRPCResponse<GraphGetSuggestedFollowsByActorOutput>>
getSuggestedFollowsByActor({
required String actor,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetSuggestedFollowsByActor(
actor: actor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);