appBskyGraphGetListBlocks function
Get mod lists that the requesting account (actor) is blocking. Requires auth.
Implementation
Future<XRPCResponse<GraphGetListBlocksOutput>> appBskyGraphGetListBlocks({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyGraphGetListBlocks,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const GraphGetListBlocksOutputConverter().fromJson,
);