shutdown method

void shutdown()

Safely shutdown and stop database operations.

Implementation

void shutdown() async {
  databaseCloseNotifier.notifyListeners();
  await _database.close();
  FlutterExitApp.exitApp();
}