EncryptedFilePersistorSettings<T> constructor

EncryptedFilePersistorSettings<T>({
  1. required bool encryptionEnabled,
  2. String? shardFn(
    1. Document<T> doc
    )?,
  3. int maxShards = 5,
  4. bool persistenceEnabled = true,
})

Implementation

EncryptedFilePersistorSettings({
  required this.encryptionEnabled,
  super.shardFn,
  super.maxShards = 5,
  super.persistenceEnabled = true,
});