LevitReactiveBatch constructor

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

Creates a batch container for the current execution.

Implementation

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