openUnderlying method
- @visibleForOverriding
- WasmSqlite3 sqlite3,
- String path,
- String vfs,
- JSAny? additionalData,
Opens a database with the sqlite3
package that will be wrapped in a
ThrottledCommonDatabase
for openDatabase.
Implementation
@visibleForOverriding
CommonDatabase openUnderlying(
WasmSqlite3 sqlite3,
String path,
String vfs,
JSAny? additionalData,
) {
return sqlite3.open(path, vfs: vfs);
}