getActorFeeds method

Future<XRPCResponse<FeedGetActorFeedsOutput>> getActorFeeds({
  1. required String actor,
  2. int? limit,
  3. String? cursor,
  4. String? $service,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

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,
);