MapChangeNotification<K, V>.added constructor

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

Returns notification with OperationKind.added operation.

Implementation

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