fieldErrors method

String fieldErrors()

Any errors from every FormField that is a descendant of this Form.

Implementation

String fieldErrors() {
  var errors = '';
  for (final field in _fields) {
    if (field.hasError) {
      errors = errors + field.errorText!;
    }
  }
  return errors;
}