LevitReactiveBatch constructor
LevitReactiveBatch(
- List<
(LxReactive, LevitReactiveChange)> entries, { - int? batchId,
- DateTime? timestamp,
Creates a batch container for the current execution.
Implementation
LevitReactiveBatch(this.entries, {int? batchId, DateTime? timestamp})
: batchId = batchId ?? ++_batchCounter,
_timestamp = timestamp;