formNoValidate property
bool
get
formNoValidate
Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
Implementation
_i2.bool get formNoValidate => _i4.getProperty(
this,
'formNoValidate',
);
set
formNoValidate
(bool value)
Implementation
set formNoValidate(_i2.bool value) {
_i4.setProperty(
this,
'formNoValidate',
value,
);
}