remove property

EnumValue remove

For removing from collections, and used as the value for ChangedEvent#change. The modified object is given by ChangedEvent#object. Use the optional ChangedEvent#propertyName to distinguish between different collections on the object. Use the ChangedEvent#oldValue property to indicate the value that was removed. Use the optional ChangedEvent#oldParam property to indicate where or how, such as an array index or dictionary key.

Implementation

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

Implementation

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