ObservedChange<T> constructor

const ObservedChange<T>(
  1. Shard<T> shard,
  2. T previousState,
  3. T currentState
)

Creates an ObservedChange record.

Implementation

const ObservedChange(this.shard, this.previousState, this.currentState);