toolsOzoneModerationGetRecord function
Get details about a record.
Implementation
Future<XRPCResponse<RecordViewDetail>> toolsOzoneModerationGetRecord({
required String uri,
String? cid,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.toolsOzoneModerationGetRecord,
headers: $headers,
parameters: {...?$unknown, 'uri': uri, if (cid != null) 'cid': cid},
to: const RecordViewDetailConverter().fromJson,
);