MapChangeNotification<K, V>.removed constructor

MapChangeNotification<K, V>.removed(
  1. K? key,
  2. V? value
)

Returns notification with OperationKind.removed operation.

Implementation

MapChangeNotification.removed(this.key, this.value)
  : op = OperationKind.removed,
    oldKey = null;