createQueue method
Create a new moderation queue. Will fail if the queue configuration conflicts with an existing queue.
Implementation
Future<XRPCResponse<QueueCreateQueueOutput>> createQueue({
required String name,
required List<QueueCreateQueueSubjectTypes> subjectTypes,
String? collection,
required List<String> reportTypes,
String? description,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneQueueCreateQueue(
name: name,
subjectTypes: subjectTypes,
collection: collection,
reportTypes: reportTypes,
description: description,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);