SqlitePersistenceConfig.serverDefaults constructor

SqlitePersistenceConfig.serverDefaults({
  1. required String storagePath,
  2. String? backendMarkerPath,
})

atSecondary server config: all optional capabilities on.

Implementation

factory SqlitePersistenceConfig.serverDefaults({
  required String storagePath,
  String? backendMarkerPath,
}) =>
    SqlitePersistenceConfig(
      storagePath: storagePath,
      backendMarkerPath: backendMarkerPath,
      enableAccessLog: true,
      enableNotificationKeystore: true,
      enableCommitLog: true,
    );