I like following the 80-20 rule with default values. If a function has default values for a parameter and I choose to use a different value, I need to make that evident in the call because that is an important piece of information.
If you are actually going and "violating" five default parameters, I would explicitly show that in the call to make it clear to the reader. i.e., I would explicitly list each parameter by name and indicate the false.
While the code you wrote should work, it is distracting, and someone would focus on figuring out what the hell you are doing rather than realizing the important bit - that you are making a very special call because you are not taking any of the defaults. This is not the place to save (electronic) trees.