open static method

WebSqlite open({
  1. required Uri worker,
  2. required Uri wasmModule,
})

Opens a WebSqlite instance by connecting to the given worker and using the wasmModule url to load sqlite3.

Implementation

static WebSqlite open({
  required Uri worker,
  required Uri wasmModule,
}) {
  return DatabaseClient(worker, wasmModule);
}