openDB method

Future<Database> openDB(
  1. String dbPath
)

Opens a database located at dbPath and returns it.

This does NOT replace the cached application database returned by db.

Implementation

Future<Database> openDB(String dbPath) => _factory.openDatabase(dbPath);