modelChange property

String modelChange

Gets or sets the name of the model change, reflecting a change to model data in addition to a change to the model itself.

The default is an empty string, which indicates that this is just a regular change to some object's state, probably its property. For a list of possible model change names, see the documentation for ChangedEvent. The names are compared in a case-sensitive manner.

Implementation

_i2.String get modelChange => _i4.getProperty(
      this,
      'modelChange',
    );
void modelChange=(String value)

Implementation

set modelChange(_i2.String value) {
  _i4.setProperty(
    this,
    'modelChange',
    value,
  );
}