updateTargetBindings method
Re-evaluate all data bindings on this panel, in order to assign new property values to the GraphObjects in this visual tree based on this object's #data property values.
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 may depend on that property.
This method does nothing if #data is null. @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 Model#updateTargetBindings
Implementation
void updateTargetBindings([_i2.String? srcprop]) {
_i4.callMethod(
this,
'updateTargetBindings',
[srcprop ?? _i5.undefined],
);
}