MapChangeNotification<K, V> constructor

MapChangeNotification<K, V>(
  1. K? key,
  2. K? oldKey,
  3. V? value,
  4. OperationKind op,
)

Returns notification with op operation.

Implementation

MapChangeNotification(this.key, this.oldKey, this.value, this.op);