getRecord method
Get a single record from a repository. Does not require auth.
Implementation
Future<XRPCResponse<RepoGetRecordOutput>> getRecord({
required String repo,
required String collection,
required String rkey,
String? cid,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoGetRecord(
repo: repo,
collection: collection,
rkey: rkey,
cid: cid,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);