assignAllDataProperties method
This is similar to Object.assign
,
but safely calls #setDataProperty for each property other than a key property.
This does not delete any properties on the DATA object,
although properties may be set to undefined if they are set that way on the PROPS object.
@param data a data object
@param props an Object holding various properties whose values are to be assigned to the DATA object
Implementation
void assignAllDataProperties(
_i2.Object data,
_i2.Object props,
) {
_i4.callMethod(
this,
'assignAllDataProperties',
[
data,
props,
],
);
}