MyDatabase constructor

MyDatabase()

Implementation

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