getActorLikes method
Implementation
Future<core.XRPCResponse<Feed>> getActorLikes({
required String actor,
int? limit,
String? cursor,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.appBskyFeedGetActorLikes,
headers: headers,
parameters: {
'actor': actor,
'limit': limit,
'cursor': cursor,
},
to: Feed.fromJson,
);