HiveCePersister constructor

HiveCePersister({
  1. String boxName = 'fluquery_cache',
  2. HiveCipher? encryptionCipher,
  3. String? path,
})

Creates a new Hive CE persister.

  • boxName: Name of the Hive box (default: 'fluquery_cache')
  • encryptionCipher: Optional cipher for encrypted storage
  • path: Optional custom storage path

Implementation

HiveCePersister({
  this.boxName = 'fluquery_cache',
  this.encryptionCipher,
  this.path,
});