loadWasmModule method
Loads a wasm module from the given uri with the specified headers.
Implementation
Future<WasmSqlite3> loadWasmModule(
String uri, {
Map<String, String>? headers,
}) async {
return WasmSqlite3.loadFromUrlString(uri, headers: headers);
}