[Flatpak] Usage of flatpak run --command

I want to run a command/binary that is build into a flatpak. I use the command
flatpak run --command=borg com.borgbase.Vorta
also
flatpak run --command=hugin_executor net.sourceforge.Hugin

The problem I’m having is that each of these commands (borg and hugin_executor) require parameters. How do I pass parameters to them? I have tried encasing them in quotes
flatpak run --command=“hugin_executor input.pto” net.sourceforge.Hugin
and without quotes
flatpak run --command=hugin_executor input.pto net.sourceforge.Hugin
neither of these worked.

Does flatpak support passing parameters like this?

Figured it out. I was trying
flatpak run --command=hugin_executor net.sourceforge.Hugin
instead od
flatpak run --command=hugin_executor net.sourceforge.Hugin

This works for me now.