PowerSyncSQLCipherOpenFactory constructor

PowerSyncSQLCipherOpenFactory({
  1. required String path,
  2. required String key,
  3. SqliteOptions sqliteOptions = defaultOptions,
})

Implementation

PowerSyncSQLCipherOpenFactory({
  required super.path,
  required this.key,
  super.sqliteOptions = defaultOptions,
}) {
  throw UnsupportedError('Unsupported platform for powersync_sqlcipher');
}