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