appBskyFeedGetActorLikes function
Get a list of posts liked by an actor. Requires auth, actor must be the requesting account.
Implementation
Future<XRPCResponse<FeedGetActorLikesOutput>> appBskyFeedGetActorLikes({
required String actor,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetActorLikes,
headers: $headers,
parameters: {
...?$unknown,
'actor': actor,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const FeedGetActorLikesOutputConverter().fromJson,
);