getBlocks method
Get data blocks from a given repo, by CID. For example, intermediate MST nodes, or records. Does not require auth; implemented by PDS.
Implementation
Future<XRPCResponse<Uint8List>> getBlocks({
required String did,
required List<String> cids,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoSyncGetBlocks(
did: did,
cids: cids,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);