When a form type corresponds to a model, I see in the form view, it renders "required" class for notnull table field types' label. I was wondering if it in any way uses schema definition? How is it passed?
Like in form_label.html.php, we have
<?php if ($required) { $label_attr['class'] = trim((isset($label_attr['class']) ? $label_attr['class'] : '').' required'); } ?>
How is $required available in here?