I'm basing a small project off of the below one-liner, but I'm struggling to pass parameters into it on the same line.
irm get.scoop.sh | iex
This script can take additional parameters, such as -ScoopDir.
How does one pass -ScoopDir C:\foo\bar into the one-liner?

& ([scriptblock]::Create((irm get.scoop.sh))) -ScoopDir C:\foo\bar