SqlitePersistenceConfig constructor

SqlitePersistenceConfig({
  1. required String storagePath,
  2. String? backendMarkerPath,
  3. bool enableAccessLog = true,
  4. bool enableNotificationKeystore = true,
  5. bool enableCommitLog = true,
})

Implementation

SqlitePersistenceConfig({
  required this.storagePath,
  String? backendMarkerPath,
  this.enableAccessLog = true,
  this.enableNotificationKeystore = true,
  this.enableCommitLog = true,
}) : backendMarkerPath =
          backendMarkerPath ?? p.join(storagePath, '.persistence_backend');