getListBlocks method

Future<XRPCResponse<GraphGetListBlocksOutput>> getListBlocks({
  1. int? limit,
  2. String? cursor,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get mod lists that the requesting account (actor) is blocking. Requires auth.

Implementation

Future<XRPCResponse<GraphGetListBlocksOutput>> getListBlocks({
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyGraphGetListBlocks(
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);