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