newValue property

Object? get newValue

The new value of the item, if there is a new value.

Implementation

Object? get newValue => _wrapped.newValue?.dartify();
set newValue (Object? v)

Implementation

set newValue(Object? v) {
  _wrapped.newValue = v?.jsify();
}