appBskyFeedGetActorFeeds function
Get a list of feeds (feed generator records) created by the actor (in the actor's repo).
Implementation
Future<XRPCResponse<FeedGetActorFeedsOutput>> appBskyFeedGetActorFeeds({
required String actor,
int? limit,
String? cursor,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetActorFeeds,
service: $service,
headers: $headers,
parameters: {
...?$unknown,
'actor': actor,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const FeedGetActorFeedsOutputConverter().fromJson,
);