notifyFieldValue method
Notifies the controller of a field value change.
This method updates the validation state and error handling for the field named fieldName
with the new fieldValue.
Implementation
@override
void notifyFieldValue(String fieldName, dynamic fieldValue) {
_fieldValueChangeController.add((fieldName, fieldValue));
}