hide method
void
hide()
Makes this field invisible in the form UI.
Hidden fields are not rendered but may still participate in form validation and data collection processes.
Implementation
void hide() {
hidden = true;
_cachedField = null;
}