requestFieldValidation method
Requests validation for a specific field. The result of the validation will be pushed to the field's ValueNotifier.
Implementation
@override
void requestFieldValidation(String fieldName, dynamic fieldValue) {
final (results, isGuard) = _classValidator.annotateFieldExtended(fieldName, fieldValue);
_errorBuffer.putAll(results);
_errorBuffer.recalculateFieldErrors();
field(fieldName).handleErrors(_errorBuffer.fieldErrors[fieldName]!);
}