getBlob method
Get a blob associated with a given account. Returns the full blob as originally uploaded. Does not require auth; implemented by PDS.
Implementation
Future<XRPCResponse<Uint8List>> getBlob({
required String did,
required String cid,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoSyncGetBlob(
did: did,
cid: cid,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);