get method

Future<T?> get()

Implementation

Future<T?> get() async {
  if (db == null) {
    db = await init();
  }
  return db;
}