getRecord method

Future<XRPCResponse<RecordViewDetail>> getRecord({
  1. required AtUri uri,
  2. String? cid,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get details about a record.

Implementation

Future<XRPCResponse<RecordViewDetail>> getRecord({
  required AtUri uri,
  String? cid,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneModerationGetRecord(
  uri: uri,
  cid: cid,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);