shutdown method
Safely shutdown and stop database operations.
Implementation
void shutdown() async {
databaseCloseNotifier.notifyListeners();
await _database.close();
FlutterExitApp.exitApp();
}
Safely shutdown and stop database operations.
void shutdown() async {
databaseCloseNotifier.notifyListeners();
await _database.close();
FlutterExitApp.exitApp();
}