LevitReactiveBatch constructor

LevitReactiveBatch(
  1. List<(LxReactive, LevitReactiveChange)> entries, {
  2. int? batchId,
  3. DateTime? timestamp,
})

Creates a batch container for the current execution.

Implementation

LevitReactiveBatch(this.entries, {int? batchId, DateTime? timestamp})
    : batchId = batchId ?? ++_batchCounter,
      _timestamp = timestamp;