newValue property
dynamic
get
newValue
Gets or sets the next or current value that the property has. The default is null.
Implementation
_i2.dynamic get newValue => _i4.getProperty(
this,
'newValue',
);
set
newValue
(dynamic value)
Implementation
set newValue(_i2.dynamic value) {
_i4.setProperty(
this,
'newValue',
value,
);
}