FilePersistorSettings<T> constructor

FilePersistorSettings<T>({
  1. bool persistenceEnabled = true,
  2. String? shardFn(
    1. Document<T> doc
    )?,
  3. int maxShards = 1,
})

Implementation

FilePersistorSettings({
  super.persistenceEnabled = true,
  this.shardFn,
  this.maxShards = 1,
});