propertyName property
Object
get
propertyName
Gets or sets the name of the property change. The default is an empty string, which is not a valid property name. This property can be useful even when the type of change is not ChangedEvent.Property, because it can help identify the collection in the #object that was modified (for ChangedEvent.Insert or ChangedEvent.Remove) or the stage of the current transaction (for ChangedEvent.Transaction).
Implementation
_i2.Object get propertyName => _i4.getProperty(
this,
'propertyName',
);
set
propertyName
(Object value)
Implementation
set propertyName(_i2.Object value) {
_i4.setProperty(
this,
'propertyName',
value,
);
}