MapChangeRecord<K, V> constructor

const MapChangeRecord<K, V>(
  1. K key,
  2. V? oldValue,
  3. V? newValue
)

Create an update record of key from oldValue to newValue.

Implementation

const MapChangeRecord(this.key, this.oldValue, this.newValue)
    : isInsert = false,
      isRemove = false;