SqliteWebOptions constructor

const SqliteWebOptions({
  1. Uri? assetBase,
  2. Uri? wasm,
  3. Uri? worker,
  4. String wasmIntegrity = sqliteWasmIntegrity,
  5. Duration openTimeout = const Duration(seconds: 15),
})

Uses the matching packaged worker and SQLite module unless overridden.

Implementation

const SqliteWebOptions({
  this.assetBase,
  this.wasm,
  this.worker,
  this.wasmIntegrity = sqliteWasmIntegrity,
  this.openTimeout = const Duration(seconds: 15),
});