get method
Returns declaration record associated with rkey
.
Implementation
Future<XRPCResponse<GetRecordOutput>> get({
String? cid,
Map<String, String>? $unknown,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _ctx.atproto.repo.getRecord(
collection: ns.chatBskyActorDeclaration,
rkey: 'self',
cid: cid,
$unknown: $unknown,
$headers: $headers,
$client: $client,
);