addValues method
Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.
Implementation
Future<XRPCResponse<EmptyData>> addValues({
required String name,
required List<String> values,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneSetAddValues(
name: name,
values: values,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);