MapChangeNotification<K, V>.updated constructor

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

Returns notification with OperationKind.updated operation.

Implementation

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