HistoryStore<S> constructor

HistoryStore<S>(
  1. Store<S> delegate, {
  2. Predicate1<S>? filter,
  3. int? limit,
})

Constructs a history store.

Implementation

HistoryStore(this.delegate, {this.filter, this.limit});