MapDiff<K, V>.change constructor

const MapDiff<K, V>.change(
  1. MapDiffArguments<K, V> args,
  2. K key,
  3. V? value,
  4. V? oldValue,
)

Implementation

const MapDiff.change(this.args, this.key, this.value, this.oldValue)
    : type = MapDiffType.change,
      assert(key != null);