bool validate()

Validates every FormField that is a descendant of this Form, and returns true iff there are no errors.

Source

bool validate() {
  _fieldDidChange();
  return _validate();
}