$hasElementErrors property

bool? $hasElementErrors

Implementation

bool? get $hasElementErrors {
  if (_hasElementErrors != null) {
    return _hasElementErrors;
  }
  _hasElementErrors = _elements.any((e) => e.$isNotValid);
  return _hasElementErrors;
}