MyDatabase constructor
Implementation
MyDatabase()
: super(
LazyDatabase(() async {
final file = File(p.join('./', 'db.sqlite'));
return NativeDatabase.createInBackground(file);
}),
);
MyDatabase()
: super(
LazyDatabase(() async {
final file = File(p.join('./', 'db.sqlite'));
return NativeDatabase.createInBackground(file);
}),
);