Hello.
I have build a Power Automate flow that takes inputs from PowerApps. It has a few mandatory parameters and an optional String parameter ("varPergunta6").


The thing is, in the way my app currently works, the value sent in "varPergunta6" may sometimes be Null, because it stems from a non-mandatory question in a formulary. I thought making the field optional would allow that, but apparently not, because I'm getting the following error:

This is the code I'm using to call the Flow:
submitRespostaTreinamentoV2.Run(
tempCodResposta,
tempCodVisitaOS,
tempPergunta1,
tempPergunta2,
tempPergunta3,
tempPergunta4,
tempPergunta5,
{text_4: tempPergunta6}
);
Sending an empty String "" instead of the Null value would not help me because the empty String will be represented differently in the database. And also because that would not be possible to do in other cases where the parameter is an Integer instead of a String
Is there any workaround for this?
Thanks in advance.