ConverterToMulti

@RequiresOptIn(message = "When creating an Arguments class, you must use one of the converter functions ending with "List" instead. Otherwise, if you know what you're doing (or you're writing your own converter functions), please feel free to opt-in. For example, instead of `boolean(...).toMulti()`, consider `booleanList(...)`. Failure to register your converters this way may result in strange or broken behaviour.")
@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class ConverterToMulti

Opt-in annotation for .toMulti() converter functions.