getQuotes method

Future<XRPCResponse<FeedGetQuotesOutput>> getQuotes({
  1. required AtUri uri,
  2. String? cid,
  3. int? limit,
  4. String? cursor,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

Get a list of quotes for a given post.

Implementation

Future<XRPCResponse<FeedGetQuotesOutput>> getQuotes({
  required AtUri uri,
  String? cid,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyFeedGetQuotes(
  uri: uri,
  cid: cid,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);