Passing parameters to internal classes

I’m sure I’m overlooking something obvious, but…

is there a simple way to pass a parameter in the “new” statement for a class that has been defined in the IDE? Like so:

var newInternalClass:InternalClass = new InternalClass (someVar);

So that when the new class is instantiated it has someVar to work with?