getActorFeeds method
Get a list of feeds (feed generator records) created by the actor (in the actor's repo).
Implementation
Future<XRPCResponse<FeedGetActorFeedsOutput>> getActorFeeds({
required String actor,
int? limit,
String? cursor,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetActorFeeds(
actor: actor,
limit: limit,
cursor: cursor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);