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,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetQuotes(
uri: uri,
cid: cid,
limit: limit,
cursor: cursor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);