How to achieve the next:
{{ radio_field(name, "value": 1, "disabled": "") }}
But I need the "disabled" to be conditional, the php equivalent is:
<?php $this->tag->radioField([$name, "value" => 1] + $condition ? ["disabled"=> ""] : []) ?>
I cannot find any method like setDisabled in the tag, similar to setDefault or anything, is there a way to achieve this in volt? or should I keep the php line?