Any errors from every FormField that is a descendant of this Form.
String fieldErrors() { var errors = ''; for (final field in _fields) { if (field.hasError) { errors = errors + field.errorText!; } } return errors; }