formNoValidate method

Button formNoValidate(
  1. bool boolean
)

This attribute specifies that the form is not to be validated when it is submitted. Read more...

Implementation

Button formNoValidate(bool boolean) {
  if (boolean && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('formnovalidate', '');
    node.attrs!.add(attr);
  }
  return this;
}