close method Null safety
Closes the connection to the database
Implementation
Future<void> close() async {
_ready.add(false);
await db.close();
schema.clear();
}
Closes the connection to the database
Future<void> close() async {
_ready.add(false);
await db.close();
schema.clear();
}