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