Hi @KUNGFUPANDA559 ,
Could you please share a bit more about your scenario?
Do you specified 50 parameters which needs to be passed from your app in your flow?
If you want to make all 50 arguments clearly within the 'FlowName'.Run() formula, I afraid that there is no way to achieve your needs in PowerApps currently.
As an alternative solution, I agree with @Pstork1 's thought almost. You could consider collect the data (you need to pass to flow) into a collection, then convert the collection data into a JSON String (using JSON function), then pass the JSON string into your flow.
So within your flow, you only need to specify single one parameter using "Ask in PowerApps" dynamic content within a "Compose" action. Then within your flow, you could use json function to convert the passed json string into a JSON table. Then you could add a "Apply to each" function, set above converted JSON Table as Input parameter value.
I have made a test on my side, please consider take a try with the following workaround:
Flow's configuration:

Then if you want to reference the column value from the converted JSON table within your own actions, please use the following expression:
item()?['Column1']
item()?['Column2']
item()?['Column3']
...
...

App's configuration:
Set the OnSelect property of the "Submit" button to following:
'FlowName'.Run(JSON(CollectionData))
More details about passing JSON value to flow, please check the following thread or video:
https://powerusers.microsoft.com/t5/Building-Power-Apps-Formerly/Pass-JSON-values-from-text-input-to-Flow/m-p/414081
https://www.youtube.com/watch?v=HLdOO4JPZ2I
Best regards,