listQueues method
List all configured moderation queues with statistics.
Implementation
Future<XRPCResponse<QueueListQueuesOutput>> listQueues({
bool? enabled,
String? subjectType,
String? collection,
List<String>? reportTypes,
int? limit,
String? cursor,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneQueueListQueues(
enabled: enabled,
subjectType: subjectType,
collection: collection,
reportTypes: reportTypes,
limit: limit,
cursor: cursor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);