SyncDatabase constructor Null safety
- String name,
- [DatabaseConfiguration? config]
Opens a Couchbase Lite database with the given name
and config
,
which executes in the current isolate.
If the database does not yet exist, it will be created.
Implementation
factory SyncDatabase(String name, [DatabaseConfiguration? config]) =>
FfiDatabase(
name: name,
config: config,
debugCreator: 'SyncDatabase()',
);