SqlitePersistenceConfig.clientDefaults constructor

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

at_client-shaped config: keystore only, commit-log-free.

Implementation

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