SqlitePersistenceConfig.clientDefaults constructor
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,
);