loadWasmModule method

Future<WasmSqlite3> loadWasmModule(
  1. Uri uri, {
  2. Map<String, String>? headers,
})

Loads a wasm module from the given uri with the specified headers.

Implementation

Future<WasmSqlite3> loadWasmModule(Uri uri,
    {Map<String, String>? headers}) async {
  return WasmSqlite3.loadFromUrl(uri, headers: headers);
}