HivePersistenceConfig constructor

HivePersistenceConfig({
  1. required String storagePath,
  2. required String commitLogPath,
  3. required String accessLogPath,
  4. required String notificationStoragePath,
  5. String? backendMarkerPath,
  6. bool enableAccessLog = true,
  7. bool enableNotificationKeystore = true,
  8. bool enableCommitLog = true,
})

Implementation

HivePersistenceConfig({
  required this.storagePath,
  required this.commitLogPath,
  required this.accessLogPath,
  required this.notificationStoragePath,
  String? backendMarkerPath,
  this.enableAccessLog = true,
  this.enableNotificationKeystore = true,
  this.enableCommitLog = true,
}) : backendMarkerPath =
          backendMarkerPath ?? '$storagePath/.persistence_backend';