connectToRecommended abstract method
Starts a feature detection via runFeatureDetection and then connects to the best database available.
When onlyOpenVfs
is enabled, only the underlying file system for the
database is initialized before connect returns. By default, the database
will also be opened in connect. Otherwise, the database will be opened
on the worker when it's first used.
Only opening the VFS can be used to, for instance, check if the database
already exists and to initialize it manually if it doesn't.
Implementation
Future<ConnectToRecommendedResult> connectToRecommended(String name,
{bool onlyOpenVfs = false});