appBskyGraphGetBlocks function
Enumerates which accounts the requesting account is currently blocking. Requires auth.
Implementation
Future<XRPCResponse<GraphGetBlocksOutput>> appBskyGraphGetBlocks({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyGraphGetBlocks,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const GraphGetBlocksOutputConverter().fromJson,
);