appBskyFeedGetQuotes function
Get a list of quotes for a given post.
Implementation
Future<XRPCResponse<FeedGetQuotesOutput>> appBskyFeedGetQuotes({
required AtUri uri,
String? cid,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetQuotes,
headers: $headers,
parameters: {
...?$unknown,
'uri': uri.toString(),
if (cid != null) 'cid': cid,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const FeedGetQuotesOutputConverter().fromJson,
);