db property

Future<Db> db

Implementation

Future<Db> get db {
	if (_mongo == null) throw Exception('MongoDB is not initialized');
	return _mongo!.db;
}