deleteSet method
Delete an entire set. Attempting to delete a set that does not exist will result in an error.
Implementation
Future<XRPCResponse<EmptyData>> deleteSet({
required String name,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneSetDeleteSet(
name: name,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);