MapChange<K, V> constructor

MapChange<K, V>({
  1. OperationType? type,
  2. K? key,
  3. V? newValue,
  4. V? oldValue,
  5. required ObservableMap<K, V> object,
})

Implementation

MapChange({
  this.type,
  this.key,
  this.newValue,
  this.oldValue,
  required this.object,
});