SqliteGraph constructor
SqliteGraph({
- required String dbPath,
Creates a SqliteGraph storing data at dbPath.
The database and required tables are initialized eagerly.
Implementation
SqliteGraph({required this.dbPath}) {
_db = sqlite3.open(path.normalize(dbPath));
_initializeDb();
}