property property

EnumValue property

For simple property changes, and used as the value for ChangedEvent#change. The name of the property is given by ChangedEvent#propertyName. The modified object is given by ChangedEvent#object. Use the ChangedEvent#oldValue and ChangedEvent#newValue properties for the previous and next property values.

For model changes, the ChangedEvent#modelChange may be non-empty, indicating a structural change to the model.

Implementation

static _i3.EnumValue get property => _i4.getProperty(
      _declaredChangedEvent,
      'Property',
    );
void property=(EnumValue value)

Implementation

static set property(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredChangedEvent,
    'Property',
    value,
  );
}