getActorLikes method

Future<XRPCResponse<Feed>> getActorLikes({
  1. required String actor,
  2. int? limit,
  3. String? cursor,
  4. Map<String, String>? headers,
})

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