toolsOzoneReportGetReport function
Get details about a single moderation report by ID.
Implementation
Future<XRPCResponse<ReportView>> toolsOzoneReportGetReport({
required int id,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.toolsOzoneReportGetReport,
service: $service,
headers: $headers,
parameters: {...?$unknown, 'id': id},
to: const ReportViewConverter().fromJson,
);