getLikes method
Get like records which reference a subject (by AT-URI and CID).
Implementation
Future<XRPCResponse<FeedGetLikesOutput>> getLikes({
required AtUri uri,
String? cid,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetLikes(
uri: uri,
cid: cid,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);