getBlob method

Future<XRPCResponse<Uint8List>> getBlob({
  1. required String did,
  2. required String cid,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);