Start from this stackoverflow question.
When you pass … (three dots) to a function, you it will be a named list that you can retrieve the argument value by using list(…)$argument name, also ..n (two dots followed by a integer) will retrieve the argument by order. ..2 will retrieve the second one and ..1 will retrieve the first one.