stopChangeNotification method

void stopChangeNotification()

Change notification stop, see the WiltChangeNotification class for more details

Note that this destroys the internal changeNotifier object which can only be reinstated by a call to startChangeNotification.

Implementation

void stopChangeNotification() {
  _changeNotifier!.stopNotifications();
  _changeNotifier = null;
  changeNotificationDbName = null;
}