newParam property

dynamic get newParam

Gets or sets an optional value associated with the new value. Most properties do not require any parameter to describe the change. This is typically a value that helps distinguish the new value, such as an index into an array. It is null if it is not used. The default is null.

Implementation

_i2.dynamic get newParam => _i4.getProperty(
      this,
      'newParam',
    );
set newParam (dynamic value)

Implementation

set newParam(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'newParam',
    value,
  );
}