updateTargetBindings method
Re-evaluate all data bindings in this Part, in order to assign new property values to the GraphObjects in this visual tree based on this this object's #data property values. This method does nothing if #data is null.
It is better to call Model#setDataProperty to modify data properties, because that will both record changes for undo/redo and will update all bindings that make depend on that property.
To update relationships between nodes, call #updateRelationshipsFromData. @param {string=} srcprop An optional source data property name: when provided, only evaluates those Bindings that use that particular property; when not provided or when it is the empty string, all bindings are evaluated. @see #updateRelationshipsFromData
Implementation
void updateTargetBindings([_i2.String? srcprop]) {
_i4.callMethod(
this,
'updateTargetBindings',
[srcprop ?? _i5.undefined],
);
}