open static method
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);
}