To use multiple arguments for a data binding adapter the Java syntax is
@BindingAdapter(value={"arg1", "arg2"}, requireAll = false)
However this does not compile in Kotlin:
Error:(13, 37) Unexpected tokens (use ';' to separate expressions on the same line)
what's the correct syntax for multiple arguments in Kotlin?