getTimeline method

Future<XRPCResponse<FeedGetTimelineOutput>> getTimeline({
  1. String? algorithm,
  2. int? limit,
  3. String? cursor,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed.

Implementation

Future<XRPCResponse<FeedGetTimelineOutput>> getTimeline({
  String? algorithm,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyFeedGetTimeline(
  algorithm: algorithm,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);