getRecord method

Future<XRPCResponse<Uint8List>> getRecord({
  1. required String did,
  2. required String collection,
  3. required String rkey,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Get data blocks needed to prove the existence or non-existence of record in the current version of repo. Does not require auth.

Implementation

Future<XRPCResponse<Uint8List>> getRecord({
  required String did,
  required String collection,
  required String rkey,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoSyncGetRecord(
  did: did,
  collection: collection,
  rkey: rkey,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);