getListFeed method

Future<XRPCResponse<FeedGetListFeedOutput>> getListFeed({
  1. required AtUri list,
  2. int? limit,
  3. String? cursor,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth.

Implementation

Future<XRPCResponse<FeedGetListFeedOutput>> getListFeed({
  required AtUri list,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyFeedGetListFeed(
  list: list,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);