getBlob method
Implementation
Future<core.XRPCResponse<Uint8List>> getBlob({
required String did,
required String cid,
Map<String, String>? headers,
}) async =>
await _ctx.get<Uint8List>(
ns.comAtprotoSyncGetBlob,
headers: headers,
parameters: {
'did': did,
'cid': cid,
},
);