PropertyChangeRecord<T, K> constructor

const PropertyChangeRecord<T, K>(
  1. Object object,
  2. K name,
  3. T oldValue,
  4. T newValue,
)

Implementation

const PropertyChangeRecord(
  this.object,
  this.name,
  this.oldValue,
  this.newValue,
);