scheduleAction method
Schedule a moderation action to be executed at a future time
Implementation
Future<XRPCResponse<ScheduledActionResults>> scheduleAction({
required UModerationScheduleActionAction action,
required List<String> subjects,
required String createdBy,
required SchedulingConfig scheduling,
ModTool? modTool,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneModerationScheduleAction(
action: action,
subjects: subjects,
createdBy: createdBy,
scheduling: scheduling,
modTool: modTool,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);