DefautHistoryStorage<T> constructor

DefautHistoryStorage<T>(
  1. int maxSize, {
  2. Future<void> persistenceHandler(
    1. List<T>
    )?,
})

Implementation

DefautHistoryStorage(this.maxSize, {this.persistenceHandler})
    : _history = <T>[];