novalidate method

Form novalidate([
  1. bool nv = true
])

Implementation

Form novalidate([bool nv = true]) {
  if (nv) attr('novalidate', BooleanAttribute(true));
  return this;
}