notifyChange method
Implementation
void notifyChange({required TypeProperty property, required dynamic value}) {
changes += 1;
if ( emitOnChange )
eventStream.add(FormEvent(isDirty: isDirty, path: property.path, value: value));
property.set(instance, value, ValuedWidgetContext(mapper: this));
}