open method
LazyDatabase
open()
Implementation
LazyDatabase open() => LazyDatabase(() async {
final dbFolder = await getDatabasesPath();
final file = File(p.join(dbFolder, 'db.sqlite'));
return NativeDatabase(file);
});