connectToWorker method
Uses WebSqlite to connects to the recommended database setup for name
.
This typically just calls WebSqlite.connectToRecommended, but subclasses can customize the behavior where needed.
Implementation
Future<ConnectToRecommendedResult> connectToWorker(
WebSqlite sqlite, String name) {
return sqlite.connectToRecommended(name);
}